This source file includes following definitions.
- file_from_fd
- add_wait_queue
- remove_wait_queue
- select_wait
- down
- up
1 #ifndef _LINUX_SCHED_H
2 #define _LINUX_SCHED_H
3
4
5
6
7
8
9
10
11
12 #include <asm/param.h>
13
14 extern unsigned long intr_count;
15 extern unsigned long event;
16
17 #include <linux/binfmts.h>
18 #include <linux/personality.h>
19 #include <linux/tasks.h>
20 #include <linux/kernel.h>
21 #include <asm/system.h>
22 #include <asm/page.h>
23
24 #include <linux/smp.h>
25 #include <linux/tty.h>
26 #include <linux/sem.h>
27
28
29
30
31 #define CSIGNAL 0x000000ff
32 #define CLONE_VM 0x00000100
33 #define CLONE_FS 0x00000200
34 #define CLONE_FILES 0x00000400
35 #define CLONE_SIGHAND 0x00000800
36 #define CLONE_PID 0x00001000
37
38
39
40
41
42
43
44
45
46
47
48 extern unsigned long avenrun[];
49
50 #define FSHIFT 11
51 #define FIXED_1 (1<<FSHIFT)
52 #define LOAD_FREQ (5*HZ)
53 #define EXP_1 1884
54 #define EXP_5 2014
55 #define EXP_15 2037
56
57 #define CALC_LOAD(load,exp,n) \
58 load *= exp; \
59 load += n*(FIXED_1-exp); \
60 load >>= FSHIFT;
61
62 #define CT_TO_SECS(x) ((x) / HZ)
63 #define CT_TO_USECS(x) (((x) % HZ) * 1000000/HZ)
64
65 extern int nr_running, nr_tasks;
66
67 #define FIRST_TASK task[0]
68 #define LAST_TASK task[NR_TASKS-1]
69
70 #include <linux/head.h>
71 #include <linux/fs.h>
72 #include <linux/signal.h>
73 #include <linux/time.h>
74 #include <linux/param.h>
75 #include <linux/resource.h>
76 #include <linux/vm86.h>
77 #include <linux/math_emu.h>
78 #include <linux/ptrace.h>
79 #include <linux/timer.h>
80
81 #include <asm/processor.h>
82
83 #define TASK_RUNNING 0
84 #define TASK_INTERRUPTIBLE 1
85 #define TASK_UNINTERRUPTIBLE 2
86 #define TASK_ZOMBIE 3
87 #define TASK_STOPPED 4
88 #define TASK_SWAPPING 5
89
90
91
92
93 #define SCHED_OTHER 0
94 #define SCHED_FIFO 1
95 #define SCHED_RR 2
96
97 struct sched_param {
98 int sched_priority;
99 };
100
101 #ifndef NULL
102 #define NULL ((void *) 0)
103 #endif
104
105 #ifdef __KERNEL__
106
107 extern void sched_init(void);
108 extern void show_state(void);
109 extern void trap_init(void);
110
111 asmlinkage void schedule(void);
112
113
114 struct files_struct {
115
116 int count;
117
118 fd_set close_on_exec;
119
120
121 struct file * fd[NR_OPEN];
122 };
123
124 #define INIT_FILES { \
125 1, \
126 { { 0, } }, \
127 { NULL, } \
128 }
129
130 struct fs_struct {
131 int count;
132 unsigned short umask;
133 struct inode * root, * pwd;
134 };
135
136 #define INIT_FS { \
137 1, \
138 0022, \
139 NULL, NULL \
140 }
141
142 struct mm_struct {
143 int count;
144 pgd_t * pgd;
145 unsigned long context;
146 unsigned long start_code, end_code, start_data, end_data;
147 unsigned long start_brk, brk, start_stack, start_mmap;
148 unsigned long arg_start, arg_end, env_start, env_end;
149 unsigned long rss, total_vm, locked_vm;
150 unsigned long def_flags;
151 struct vm_area_struct * mmap;
152 struct vm_area_struct * mmap_avl;
153 };
154
155 #define INIT_MM { \
156 1, \
157 swapper_pg_dir, \
158 0, \
159 0, 0, 0, 0, \
160 0, 0, 0, 0, \
161 0, 0, 0, 0, \
162 0, 0, 0, \
163 0, \
164 &init_mmap, &init_mmap }
165
166 struct signal_struct {
167 int count;
168 struct sigaction action[32];
169 };
170
171 #define INIT_SIGNALS { \
172 1, \
173 { {0,}, } }
174
175 struct task_struct {
176
177 volatile long state;
178 long counter;
179 long priority;
180 unsigned long signal;
181 unsigned long blocked;
182 unsigned long flags;
183 int errno;
184 long debugreg[8];
185 struct exec_domain *exec_domain;
186
187 struct linux_binfmt *binfmt;
188 struct task_struct *next_task, *prev_task;
189 struct task_struct *next_run, *prev_run;
190 unsigned long saved_kernel_stack;
191 unsigned long kernel_stack_page;
192 int exit_code, exit_signal;
193
194 unsigned long personality;
195 int dumpable:1;
196 int did_exec:1;
197
198 int pid;
199 int pgrp;
200 int tty_old_pgrp;
201 int session;
202
203 int leader;
204 int groups[NGROUPS];
205
206
207
208
209
210 struct task_struct *p_opptr, *p_pptr, *p_cptr, *p_ysptr, *p_osptr;
211 struct wait_queue *wait_chldexit;
212 unsigned short uid,euid,suid,fsuid;
213 unsigned short gid,egid,sgid,fsgid;
214 unsigned long timeout, policy, rt_priority;
215 unsigned long it_real_value, it_prof_value, it_virt_value;
216 unsigned long it_real_incr, it_prof_incr, it_virt_incr;
217 struct timer_list real_timer;
218 long utime, stime, cutime, cstime, start_time;
219
220 unsigned long min_flt, maj_flt, nswap, cmin_flt, cmaj_flt, cnswap;
221 int swappable:1;
222 unsigned long swap_address;
223 unsigned long old_maj_flt;
224 unsigned long dec_flt;
225 unsigned long swap_cnt;
226
227 struct rlimit rlim[RLIM_NLIMITS];
228 unsigned short used_math;
229 char comm[16];
230
231 int link_count;
232 struct tty_struct *tty;
233
234 struct sem_undo *semundo;
235 struct sem_queue *semsleeping;
236
237 struct desc_struct *ldt;
238
239 struct thread_struct tss;
240
241 struct fs_struct *fs;
242
243 struct files_struct *files;
244
245 struct mm_struct *mm;
246
247 struct signal_struct *sig;
248 #ifdef __SMP__
249 int processor;
250 int last_processor;
251 int lock_depth;
252 #endif
253 };
254
255
256
257
258 #define PF_ALIGNWARN 0x00000001
259
260 #define PF_PTRACED 0x00000010
261 #define PF_TRACESYS 0x00000020
262
263 #define PF_STARTING 0x00000100
264 #define PF_EXITING 0x00000200
265
266 #define PF_USEDFPU 0x00100000
267
268
269
270
271
272 #define _STK_LIM (8*1024*1024)
273
274 #define DEF_PRIORITY (20*HZ/100)
275
276
277
278
279
280 #define INIT_TASK \
281 { 0,DEF_PRIORITY,DEF_PRIORITY,0,0,0,0, \
282 { 0, }, \
283 &default_exec_domain, \
284 NULL, \
285 &init_task,&init_task, &init_task, &init_task, \
286 0,(unsigned long) &init_kernel_stack, \
287 0,0,0,0,0, \
288 0,0,0,0,0, \
289 {NOGROUP,}, \
290 &init_task,&init_task,NULL,NULL,NULL,NULL, \
291 0,0,0,0,0,0,0,0, \
292 0,SCHED_OTHER,0,0,0,0,0,0,0, \
293 { NULL, NULL, 0, 0, it_real_fn }, \
294 0,0,0,0,0, \
295 0,0,0,0,0,0, \
296 0,0,0,0,0, \
297 INIT_RLIMITS, \
298 0, \
299 "swapper", \
300 0,NULL, \
301 NULL, NULL, \
302 NULL, \
303 INIT_TSS, \
304 &init_fs, \
305 &init_files, \
306 &init_mm, \
307 &init_signals, \
308 }
309
310 extern struct mm_struct init_mm;
311 extern struct task_struct init_task;
312 extern struct task_struct *task[NR_TASKS];
313 extern struct task_struct *last_task_used_math;
314 extern struct task_struct *current_set[NR_CPUS];
315
316
317
318
319 #define current (0+current_set[smp_processor_id()])
320 extern unsigned long volatile jiffies;
321 extern unsigned long itimer_ticks;
322 extern unsigned long itimer_next;
323 extern struct timeval xtime;
324 extern int need_resched;
325 extern void do_timer(struct pt_regs *);
326
327 extern unsigned int * prof_buffer;
328 extern unsigned long prof_len;
329 extern unsigned long prof_shift;
330
331 extern int securelevel;
332
333 #define CURRENT_TIME (xtime.tv_sec)
334
335 extern void sleep_on(struct wait_queue ** p);
336 extern void interruptible_sleep_on(struct wait_queue ** p);
337 extern void wake_up(struct wait_queue ** p);
338 extern void wake_up_interruptible(struct wait_queue ** p);
339 extern void wake_up_process(struct task_struct * tsk);
340
341 extern void notify_parent(struct task_struct * tsk);
342 extern int send_sig(unsigned long sig,struct task_struct * p,int priv);
343 extern int in_group_p(gid_t grp);
344
345 extern int request_irq(unsigned int irq,
346 void (*handler)(int, void *, struct pt_regs *),
347 unsigned long flags,
348 const char *device,
349 void *dev_id);
350 extern void free_irq(unsigned int irq, void *dev_id);
351
352 extern void copy_thread(int, unsigned long, unsigned long, struct task_struct *, struct pt_regs *);
353 extern void flush_thread(void);
354 extern void exit_thread(void);
355
356 extern void exit_fs(struct task_struct *);
357 extern void exit_files(struct task_struct *);
358 extern void exit_sighand(struct task_struct *);
359 extern void release_thread(struct task_struct *);
360
361 extern int do_execve(char *, char **, char **, struct pt_regs *);
362 extern int do_fork(unsigned long, unsigned long, struct pt_regs *);
363
364
365
366
367
368
369 extern inline struct file *file_from_fd(const unsigned int fd)
370 {
371
372 if (fd >= NR_OPEN)
373 return NULL;
374
375 return current->files->fd[fd];
376 }
377
378
379
380
381
382
383 extern inline void add_wait_queue(struct wait_queue ** p, struct wait_queue * wait)
384 {
385 unsigned long flags;
386
387 #ifdef DEBUG
388 if (wait->next) {
389 __label__ here;
390 unsigned long pc;
391 pc = (unsigned long) &&here;
392 here:
393 printk("add_wait_queue (%08lx): wait->next = %08lx\n",pc,(unsigned long) wait->next);
394 }
395 #endif
396 save_flags(flags);
397 cli();
398 if (!*p) {
399 wait->next = wait;
400 *p = wait;
401 } else {
402 wait->next = (*p)->next;
403 (*p)->next = wait;
404 }
405 restore_flags(flags);
406 }
407
408 extern inline void remove_wait_queue(struct wait_queue ** p, struct wait_queue * wait)
409 {
410 unsigned long flags;
411 struct wait_queue * tmp;
412 #ifdef DEBUG
413 unsigned long ok = 0;
414 #endif
415
416 save_flags(flags);
417 cli();
418 if ((*p == wait) &&
419 #ifdef DEBUG
420 (ok = 1) &&
421 #endif
422 ((*p = wait->next) == wait)) {
423 *p = NULL;
424 } else {
425 tmp = wait;
426 while (tmp->next != wait) {
427 tmp = tmp->next;
428 #ifdef DEBUG
429 if (tmp == *p)
430 ok = 1;
431 #endif
432 }
433 tmp->next = wait->next;
434 }
435 wait->next = NULL;
436 restore_flags(flags);
437 #ifdef DEBUG
438 if (!ok) {
439 __label__ here;
440 ok = (unsigned long) &&here;
441 printk("removed wait_queue not on list.\n");
442 printk("list = %08lx, queue = %08lx\n",(unsigned long) p, (unsigned long) wait);
443 here:
444 printk("eip = %08lx\n",ok);
445 }
446 #endif
447 }
448
449 extern inline void select_wait(struct wait_queue ** wait_address, select_table * p)
450 {
451 struct select_table_entry * entry;
452
453 if (!p || !wait_address)
454 return;
455 if (p->nr >= __MAX_SELECT_TABLE_ENTRIES)
456 return;
457 entry = p->entry + p->nr;
458 entry->wait_address = wait_address;
459 entry->wait.task = current;
460 entry->wait.next = NULL;
461 add_wait_queue(wait_address,&entry->wait);
462 p->nr++;
463 }
464
465 extern void __down(struct semaphore * sem);
466
467
468
469
470 extern inline void down(struct semaphore * sem)
471 {
472 if (sem->count <= 0)
473 __down(sem);
474 sem->count--;
475 }
476
477 extern inline void up(struct semaphore * sem)
478 {
479 sem->count++;
480 wake_up(&sem->wait);
481 }
482
483 #define REMOVE_LINKS(p) do { unsigned long flags; \
484 save_flags(flags) ; cli(); \
485 (p)->next_task->prev_task = (p)->prev_task; \
486 (p)->prev_task->next_task = (p)->next_task; \
487 restore_flags(flags); \
488 if ((p)->p_osptr) \
489 (p)->p_osptr->p_ysptr = (p)->p_ysptr; \
490 if ((p)->p_ysptr) \
491 (p)->p_ysptr->p_osptr = (p)->p_osptr; \
492 else \
493 (p)->p_pptr->p_cptr = (p)->p_osptr; \
494 } while (0)
495
496 #define SET_LINKS(p) do { unsigned long flags; \
497 save_flags(flags); cli(); \
498 (p)->next_task = &init_task; \
499 (p)->prev_task = init_task.prev_task; \
500 init_task.prev_task->next_task = (p); \
501 init_task.prev_task = (p); \
502 restore_flags(flags); \
503 (p)->p_ysptr = NULL; \
504 if (((p)->p_osptr = (p)->p_pptr->p_cptr) != NULL) \
505 (p)->p_osptr->p_ysptr = p; \
506 (p)->p_pptr->p_cptr = p; \
507 } while (0)
508
509 #define for_each_task(p) \
510 for (p = &init_task ; (p = p->next_task) != &init_task ; )
511
512 #endif
513
514 #endif