mv cursetree/pty subdir
This commit is contained in:
parent
878be07a71
commit
69745c81f7
7 changed files with 1 additions and 1 deletions
14
cursetree/pty/child.h
Normal file
14
cursetree/pty/child.h
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
#ifndef DORNE_CHILD_H
|
||||
#define DORNE_CHILD_H
|
||||
|
||||
#include <unistd.h>
|
||||
|
||||
struct d_child {
|
||||
pid_t pid;
|
||||
int fdmx; /* PTY master fd (read/write) */
|
||||
int fderr; /* child's stderr (readonly) */
|
||||
} __attribute__((packed, aligned(4)));
|
||||
|
||||
int spawnchild(struct d_child *child);
|
||||
|
||||
#endif /* DORNE_CHILD_H */
|
||||
Loading…
Add table
Add a link
Reference in a new issue