1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-27 04:12:51 +00:00
Files
Interlisp.maiko/inc/unixcommdefs.h
Bruce Mitchener ddb1c9f717 tidy: FindAvailablePty.
* Remove unused `Master` argument.
* Update documentation.
* Remove unused `MasterFD` variable in caller.
* Remove `slot` variable in caller and use `Master` in each case.
* Make `FindAvailablePty` a static function.
2021-02-22 11:54:51 +07:00

13 lines
401 B
C

#ifndef UNIXCOMMDEFS_H
#define UNIXCOMMDEFS_H 1
#include "lispemul.h" /* for LispPTR */
int find_process_slot(register int pid);
void wait_for_comm_processes(void);
char *build_socket_pathname(int desc);
void close_unix_descriptors(void);
int FindUnixPipes(void);
void WriteLispStringToPipe(LispPTR lispstr);
LispPTR Unix_handlecomm(LispPTR *args);
void WriteLispStringToPipe(LispPTR lispstr);
#endif