mirror of
https://github.com/vale981/ray
synced 2025-03-06 02:21:39 -05:00

* Get rid of 'index' lines in patches, which are unnecessary and likely wrong anyway (esp. when there are multiple patches) * Simplify patches to remove unnecessary context and make them more robust
10 lines
499 B
Diff
10 lines
499 B
Diff
diff --git cpp/src/plasma/store.cc cpp/src/plasma/store.cc
|
|
--- cpp/src/plasma/store.cc
|
|
+++ cpp/src/plasma/store.cc
|
|
@@ -1185,3 +1185,5 @@ void StartServer(char* socket_name, std::string plasma_directory, bool hugepages_enabled,
|
|
+#ifndef _WIN32 // TODO(mehrdadn): Is there an equivalent of this we need for Windows?
|
|
// Ignore SIGPIPE signals. If we don't do this, then when we attempt to write
|
|
// to a client that has already died, the store could die.
|
|
signal(SIGPIPE, SIG_IGN);
|
|
+#endif
|
|
--
|