Przeglądaj źródła

Remove blocking pipe open in child

master
Arun Prakash Jana 4 lat temu
rodzic
commit
609561494f
Nie znaleziono w bazie danych klucza dla tego podpisu ID klucza GPG: A75979F35C080412
1 zmienionych plików z 1 dodań i 1 usunięć
  1. +1
    -1
      src/nnn.c

+ 1
- 1
src/nnn.c Wyświetl plik

@@ -4316,7 +4316,7 @@ static bool run_selected_plugin(char **path, const char *file, char *runfile, ch
exitcurses();

if (fork() == 0) { // In child
int wfd = open(g_pipepath, O_WRONLY | O_NONBLOCK);
int wfd = open(g_pipepath, O_WRONLY);

if (wfd == -1)
_exit(EXIT_FAILURE);


Ładowanie…
Anuluj
Zapisz