mirror of
https://github.com/drasko/codezero.git
synced 2026-01-12 10:53:16 +01:00
- Directory creation, file read/write is OK. - Cannot reuse old task's fds. They are not recycled for some reason. - Problems with fork/clone/exit. They fail for a reason.
14 lines
234 B
C
14 lines
234 B
C
/*
|
|
* Definitions for do_exit() flags
|
|
*
|
|
* Copyright (C) 2008 Bahadir Balban
|
|
*/
|
|
|
|
#ifndef __EXIT_H__
|
|
#define __EXIT_H__
|
|
|
|
void do_exit(struct tcb *task, int status);
|
|
int execve_recycle_task(struct tcb *task);
|
|
|
|
#endif /* __EXIT_H__ */
|