mirror of
https://review.haiku-os.org/haiku
synced 2025-02-06 13:58:21 +01:00
17ebe2b021
including also Haiku) using FIFOs instead of Unix sockets. Advantages: * Multiple FS shells can run concurrently, since they no longer need a unique address. * Killing/aborting the build_haiku_image script will automatically tear down the FS shell as well, so there shouldn't be any stray FS shell processes anymore. Hopefully also fixes #5498. So far only tested under Haiku. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40097 a95241bf-73f2-0310-859d-f6bbb57e9c96
16 lines
316 B
C
16 lines
316 B
C
/*
|
|
* Copyright 2005-2007, Ingo Weinhold, bonefish@cs.tu-berlin.de.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _FSSH_FS_SHELL_COMMAND_H
|
|
#define _FSSH_FS_SHELL_COMMAND_H
|
|
|
|
|
|
extern bool gUsesFifos;
|
|
|
|
|
|
bool send_external_command(const char* command, int* result);
|
|
|
|
|
|
#endif // _FSSH_FS_SHELL_COMMAND_H
|