intfork() Create a process,return child’s PID.intexit(int status) Terminate the current process; status reported to wait(). No return.intwait(int*status) Wait for a child to exit; exit status in *status; returns child PID.intkill(int pid) Terminate process PID. Returns 0, or -1for error.intgetpid() Return the current process’s PID.intsleep(int n) Pause for n clock ticks.intexec(char*file,char*argv[]) Load a file and execute it with arguments; only returns if error.char*sbrk(int n) Grow process’s memory by n bytes. Returns start of new memory.intopen(char*file,int flags) Open a file; flags indicate read/write; returns an fd(file descriptor).intwrite(int fd,char*buf,int n) Write n bytes from buf to file descriptor fd; returns n.intread(int fd,char*buf,int n) Read n bytes into buf; returns number read; or 0if end of file.intclose(int fd) Release open file fd.intdup(int fd) Return a new file descriptor referring to the same file as fd.intpipe(int p[]) Create a pipe, put read/write file descriptors in p[0] and p[1].intchdir(char*dir) Change the current directory.intmkdir(char*dir) Create a new directory.intmknod(char*file,int,int) Create a device file.intfstat(int fd,structstat*st) Place info about an open file into *st.intstat(char*file,structstat*st) Place info about a named file into *st.intlink(char*file1,char*file2) Create another name(file2)for the file file1.intunlink(char*file) Remove a file.
/* 指数型枚举(每个数有选和不选两种情况) #include<bits/stdc.h> using namespace std; const int N20; int n; int st[N];//记录每个数的状态,0还没有考虑,1表示选这个数,2表示不选这个数 void dfs(int x){/…