patch-1.3.26 linux/include/linux/sched.h
Next file: linux/include/linux/scsi.h
Previous file: linux/include/linux/route.h
Back to the patch index
Back to the overall index
- Lines: 107
- Date:
Wed Sep 13 11:42:18 1995
- Orig file:
v1.3.25/linux/include/linux/sched.h
- Orig date:
Sat Sep 9 15:26:53 1995
diff -u --recursive --new-file v1.3.25/linux/include/linux/sched.h linux/include/linux/sched.h
@@ -22,6 +22,15 @@
#include <asm/page.h>
/*
+ * cloning flags:
+ */
+#define CSIGNAL 0x000000ff /* signal mask to be sent at exit */
+#define CLONE_VM 0x00000100 /* set if VM shared between processes */
+#define CLONE_FS 0x00000200 /* set if fs info shared between processes */
+#define CLONE_FILES 0x00000400 /* set if open files shared between processes */
+#define CLONE_SIGHAND 0x00000800 /* set if signal handlers shared */
+
+/*
* These are the constant used to fake the fixed-point load-average
* counting. Some notes:
* - 11 bit fractions expand to 22 bits by the multiplies: this gives
@@ -87,8 +96,6 @@
asmlinkage void schedule(void);
-#endif /* __KERNEL__ */
-
struct files_struct {
int count;
fd_set close_on_exec;
@@ -142,6 +149,15 @@
/* swap */ 0, 0, 0, 0, \
&init_mmap, &init_mmap }
+struct signal_struct {
+ int count;
+ struct sigaction action[32];
+};
+
+#define INIT_SIGNALS { \
+ 1, \
+ { {0,}, } }
+
struct task_struct {
/* these are hardcoded - don't touch */
volatile long state; /* -1 unrunnable, 0 runnable, >0 stopped */
@@ -157,7 +173,6 @@
struct linux_binfmt *binfmt;
struct task_struct *next_task, *prev_task;
struct task_struct *next_run, *prev_run;
- struct sigaction *sigaction;
unsigned long saved_kernel_stack;
unsigned long kernel_stack_page;
int exit_code, exit_signal;
@@ -199,6 +214,8 @@
struct files_struct *files;
/* memory management info */
struct mm_struct *mm;
+/* signal handlers */
+ struct signal_struct *sig;
};
/*
@@ -213,15 +230,6 @@
#define PF_EXITING 0x00000200 /* getting shut down */
/*
- * cloning flags:
- */
-#define CSIGNAL 0x000000ff /* signal mask to be sent at exit */
-#define CLONE_VM 0x00000100 /* set if VM shared between processes */
-#define CLONE_FS 0x00000200 /* set if fs info shared between processes */
-#define CLONE_FILES 0x00000400 /* set if open files shared between processes */
-#define CLONE_SIGHAND 0x00000800 /* set if signal handlers shared */
-
-/*
* Limit the stack by to some sane default: root can always
* increase this limit if needed.. 8MB seems reasonable.
*/
@@ -237,7 +245,6 @@
/* exec domain */&default_exec_domain, \
/* binfmt */ NULL, \
/* schedlink */ &init_task,&init_task, &init_task, &init_task, \
-/* signals */ init_sigaction, \
/* stack */ 0,(unsigned long) &init_kernel_stack, \
/* ec,brk... */ 0,0,0,0,0, \
/* pid etc.. */ 0,0,0,0,0, \
@@ -259,11 +266,10 @@
/* tss */ INIT_TSS, \
/* fs */ &init_fs, \
/* files */ &init_files, \
-/* mm */ &init_mm \
+/* mm */ &init_mm, \
+/* signals */ &init_signals, \
}
-#ifdef __KERNEL__
-
extern struct mm_struct init_mm;
extern struct task_struct init_task;
extern struct task_struct *task[NR_TASKS];
@@ -298,6 +304,10 @@
extern void copy_thread(int, unsigned long, unsigned long, struct task_struct *, struct pt_regs *);
extern void flush_thread(void);
extern void exit_thread(void);
+
+extern void exit_fs(struct task_struct *);
+extern void exit_files(struct task_struct *);
+extern void exit_sighand(struct task_struct *);
extern int do_execve(char *, char **, char **, struct pt_regs *);
extern int do_fork(unsigned long, unsigned long, struct pt_regs *);
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov
with Sam's (original) version of this