root/include/linux/sched.h

/* [previous][next][first][last][top][bottom][index][help] */

INCLUDED FROM


DEFINITIONS

This source file includes following definitions.
  1. add_wait_queue
  2. remove_wait_queue
  3. select_wait
  4. down
  5. up

   1 #ifndef _LINUX_SCHED_H
   2 #define _LINUX_SCHED_H
   3 
   4 /*
   5  * define DEBUG if you want the wait-queues to have some extra
   6  * debugging code. It's not normally used, but might catch some
   7  * wait-queue coding errors.
   8  *
   9  *  #define DEBUG
  10  */
  11 
  12 #include <asm/param.h>  /* for HZ */
  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 
  23 /*
  24  * These are the constant used to fake the fixed-point load-average
  25  * counting. Some notes:
  26  *  - 11 bit fractions expand to 22 bits by the multiplies: this gives
  27  *    a load-average precision of 10 bits integer + 11 bits fractional
  28  *  - if you want to count load-averages more often, you need more
  29  *    precision, or rounding will get you. With 2-second counting freq,
  30  *    the EXP_n values would be 1981, 2034 and 2043 if still using only
  31  *    11 bit fractions.
  32  */
  33 extern unsigned long avenrun[];         /* Load averages */
  34 
  35 #define FSHIFT          11              /* nr of bits of precision */
  36 #define FIXED_1         (1<<FSHIFT)     /* 1.0 as fixed-point */
  37 #define LOAD_FREQ       (5*HZ)          /* 5 sec intervals */
  38 #define EXP_1           1884            /* 1/exp(5sec/1min) as fixed-point */
  39 #define EXP_5           2014            /* 1/exp(5sec/5min) */
  40 #define EXP_15          2037            /* 1/exp(5sec/15min) */
  41 
  42 #define CALC_LOAD(load,exp,n) \
  43         load *= exp; \
  44         load += n*(FIXED_1-exp); \
  45         load >>= FSHIFT;
  46 
  47 #define CT_TO_SECS(x)   ((x) / HZ)
  48 #define CT_TO_USECS(x)  (((x) % HZ) * 1000000/HZ)
  49 
  50 #define FIRST_TASK task[0]
  51 #define LAST_TASK task[NR_TASKS-1]
  52 
  53 #include <linux/head.h>
  54 #include <linux/fs.h>
  55 #include <linux/signal.h>
  56 #include <linux/time.h>
  57 #include <linux/param.h>
  58 #include <linux/resource.h>
  59 #include <linux/vm86.h>
  60 #include <linux/math_emu.h>
  61 #include <linux/ptrace.h>
  62 
  63 #include <asm/processor.h>
  64 
  65 #define TASK_RUNNING            0
  66 #define TASK_INTERRUPTIBLE      1
  67 #define TASK_UNINTERRUPTIBLE    2
  68 #define TASK_ZOMBIE             3
  69 #define TASK_STOPPED            4
  70 #define TASK_SWAPPING           5
  71 
  72 #ifndef NULL
  73 #define NULL ((void *) 0)
  74 #endif
  75 
  76 #ifdef __KERNEL__
  77 
  78 extern void sched_init(void);
  79 extern void show_state(void);
  80 extern void trap_init(void);
  81 
  82 asmlinkage void schedule(void);
  83 
  84 #endif /* __KERNEL__ */
  85 
  86 struct files_struct {
  87         int count;
  88         fd_set close_on_exec;
  89         struct file * fd[NR_OPEN];
  90 };
  91 
  92 #define INIT_FILES { \
  93         0, \
  94         { { 0, } }, \
  95         { NULL, } \
  96 }
  97 
  98 struct fs_struct {
  99         int count;
 100         unsigned short umask;
 101         struct inode * root, * pwd;
 102 };
 103 
 104 #define INIT_FS { \
 105         0, \
 106         0022, \
 107         NULL, NULL \
 108 }
 109 
 110 struct mm_struct {
 111         int count;
 112         unsigned long start_code, end_code, end_data;
 113         unsigned long start_brk, brk, start_stack, start_mmap;
 114         unsigned long arg_start, arg_end, env_start, env_end;
 115         unsigned long rss;
 116         unsigned long min_flt, maj_flt, cmin_flt, cmaj_flt;
 117         int swappable:1;
 118         unsigned long swap_address;
 119         unsigned long old_maj_flt;      /* old value of maj_flt */
 120         unsigned long dec_flt;          /* page fault count of the last time */
 121         unsigned long swap_cnt;         /* number of pages to swap on next pass */
 122         struct vm_area_struct * mmap;
 123         struct vm_area_struct * mmap_avl;
 124 };
 125 
 126 #define INIT_MM { \
 127                 0, \
 128                 0, 0, 0, \
 129                 0, 0, 0, 0, \
 130                 0, 0, 0, 0, \
 131                 0, \
 132 /* ?_flt */     0, 0, 0, 0, \
 133                 0, \
 134 /* swap */      0, 0, 0, 0, \
 135                 &init_mmap, &init_mmap }
 136 
 137 struct task_struct {
 138 /* these are hardcoded - don't touch */
 139         volatile long state;    /* -1 unrunnable, 0 runnable, >0 stopped */
 140         long counter;
 141         long priority;
 142         unsigned long signal;
 143         unsigned long blocked;  /* bitmap of masked signals */
 144         unsigned long flags;    /* per process flags, defined below */
 145         int errno;
 146         int debugreg[8];  /* Hardware debugging registers */
 147         struct exec_domain *exec_domain;
 148 /* various fields */
 149         struct linux_binfmt *binfmt;
 150         struct task_struct *next_task, *prev_task;
 151         struct sigaction sigaction[32];
 152         unsigned long saved_kernel_stack;
 153         unsigned long kernel_stack_page;
 154         int exit_code, exit_signal;
 155         unsigned long personality;
 156         int dumpable:1;
 157         int did_exec:1;
 158         int pid,pgrp,tty_old_pgrp,session,leader;
 159         int     groups[NGROUPS];
 160         /* 
 161          * pointers to (original) parent process, youngest child, younger sibling,
 162          * older sibling, respectively.  (p->father can be replaced with 
 163          * p->p_pptr->pid)
 164          */
 165         struct task_struct *p_opptr, *p_pptr, *p_cptr, *p_ysptr, *p_osptr;
 166         struct wait_queue *wait_chldexit;       /* for wait4() */
 167         unsigned short uid,euid,suid,fsuid;
 168         unsigned short gid,egid,sgid,fsgid;
 169         unsigned long timeout;
 170         unsigned long it_real_value, it_prof_value, it_virt_value;
 171         unsigned long it_real_incr, it_prof_incr, it_virt_incr;
 172         long utime, stime, cutime, cstime, start_time;
 173         struct rlimit rlim[RLIM_NLIMITS]; 
 174         unsigned short used_math;
 175         char comm[16];
 176 /* file system info */
 177         int link_count;
 178         struct tty_struct *tty; /* NULL if no tty */
 179 /* ipc stuff */
 180         struct sem_undo *semundo;
 181         struct sem_queue *semsleeping;
 182 /* ldt for this task - used by Wine.  If NULL, default_ldt is used */
 183         struct desc_struct *ldt;
 184 /* tss for this task */
 185         struct thread_struct tss;
 186 /* filesystem information */
 187         struct fs_struct fs[1];
 188 /* open file information */
 189         struct files_struct files[1];
 190 /* memory management info */
 191         struct mm_struct mm[1];
 192 };
 193 
 194 /*
 195  * Per process flags
 196  */
 197 #define PF_ALIGNWARN    0x00000001      /* Print alignment warning msgs */
 198                                         /* Not implemented yet, only for 486*/
 199 #define PF_PTRACED      0x00000010      /* set if ptrace (0) has been called. */
 200 #define PF_TRACESYS     0x00000020      /* tracing system calls */
 201 
 202 /*
 203  * cloning flags:
 204  */
 205 #define CSIGNAL         0x000000ff      /* signal mask to be sent at exit */
 206 #define COPYVM          0x00000100      /* set if VM copy desired (like normal fork()) */
 207 #define COPYFD          0x00000200      /* set if fd's should be copied, not shared (NI) */
 208 
 209 /*
 210  *  INIT_TASK is used to set up the first task table, touch at
 211  * your own risk!. Base=0, limit=0x1fffff (=2MB)
 212  */
 213 #define INIT_TASK \
 214 /* state etc */ { 0,15,15,0,0,0,0, \
 215 /* debugregs */ { 0, },            \
 216 /* exec domain */&default_exec_domain, \
 217 /* binfmt */    NULL, \
 218 /* schedlink */ &init_task,&init_task, \
 219 /* signals */   {{ 0, },}, \
 220 /* stack */     0,(unsigned long) &init_kernel_stack, \
 221 /* ec,brk... */ 0,0,0,0,0, \
 222 /* pid etc.. */ 0,0,0,0,0, \
 223 /* suppl grps*/ {NOGROUP,}, \
 224 /* proc links*/ &init_task,&init_task,NULL,NULL,NULL,NULL, \
 225 /* uid etc */   0,0,0,0,0,0,0,0, \
 226 /* timeout */   0,0,0,0,0,0,0,0,0,0,0,0, \
 227 /* rlimits */   { {LONG_MAX, LONG_MAX}, {LONG_MAX, LONG_MAX},  \
 228                   {LONG_MAX, LONG_MAX}, {LONG_MAX, LONG_MAX},  \
 229                   {       0, LONG_MAX}, {LONG_MAX, LONG_MAX}, \
 230                   {MAX_TASKS_PER_USER, MAX_TASKS_PER_USER}, {NR_OPEN, NR_OPEN}}, \
 231 /* math */      0, \
 232 /* comm */      "swapper", \
 233 /* fs info */   0,NULL, \
 234 /* ipc */       NULL, NULL, \
 235 /* ldt */       NULL, \
 236 /* tss */       INIT_TSS, \
 237 /* fs */        { INIT_FS }, \
 238 /* files */     { INIT_FILES }, \
 239 /* mm */        { INIT_MM } \
 240 }
 241 
 242 #ifdef __KERNEL__
 243 
 244 extern struct task_struct init_task;
 245 extern struct task_struct *task[NR_TASKS];
 246 extern struct task_struct *last_task_used_math;
 247 extern struct task_struct *current;
 248 extern unsigned long volatile jiffies;
 249 extern unsigned long itimer_ticks;
 250 extern unsigned long itimer_next;
 251 extern struct timeval xtime;
 252 extern int need_resched;
 253 
 254 #define CURRENT_TIME (xtime.tv_sec)
 255 
 256 extern void sleep_on(struct wait_queue ** p);
 257 extern void interruptible_sleep_on(struct wait_queue ** p);
 258 extern void wake_up(struct wait_queue ** p);
 259 extern void wake_up_interruptible(struct wait_queue ** p);
 260 
 261 extern void notify_parent(struct task_struct * tsk);
 262 extern int send_sig(unsigned long sig,struct task_struct * p,int priv);
 263 extern int in_group_p(gid_t grp);
 264 
 265 extern int request_irq(unsigned int irq,void (*handler)(int, struct pt_regs *),
 266         unsigned long flags, const char *device);
 267 extern void free_irq(unsigned int irq);
 268 
 269 extern void copy_thread(int, unsigned long, unsigned long, struct task_struct *, struct pt_regs *);
 270 extern void flush_thread(void);
 271 extern void exit_thread(void);
 272 
 273 extern int do_execve(char *, char **, char **, struct pt_regs *);
 274 extern int do_fork(unsigned long, unsigned long, struct pt_regs *);
 275 asmlinkage int do_signal(unsigned long, struct pt_regs *);
 276 
 277 /*
 278  * The wait-queues are circular lists, and you have to be *very* sure
 279  * to keep them correct. Use only these two functions to add/remove
 280  * entries in the queues.
 281  */
 282 extern inline void add_wait_queue(struct wait_queue ** p, struct wait_queue * wait)
     /* [previous][next][first][last][top][bottom][index][help] */
 283 {
 284         unsigned long flags;
 285 
 286 #ifdef DEBUG
 287         if (wait->next) {
 288                 unsigned long pc;
 289                 __asm__ __volatile__("call 1f\n"
 290                         "1:\tpopl %0":"=r" (pc));
 291                 printk("add_wait_queue (%08x): wait->next = %08x\n",pc,(unsigned long) wait->next);
 292         }
 293 #endif
 294         save_flags(flags);
 295         cli();
 296         if (!*p) {
 297                 wait->next = wait;
 298                 *p = wait;
 299         } else {
 300                 wait->next = (*p)->next;
 301                 (*p)->next = wait;
 302         }
 303         restore_flags(flags);
 304 }
 305 
 306 extern inline void remove_wait_queue(struct wait_queue ** p, struct wait_queue * wait)
     /* [previous][next][first][last][top][bottom][index][help] */
 307 {
 308         unsigned long flags;
 309         struct wait_queue * tmp;
 310 #ifdef DEBUG
 311         unsigned long ok = 0;
 312 #endif
 313 
 314         save_flags(flags);
 315         cli();
 316         if ((*p == wait) &&
 317 #ifdef DEBUG
 318             (ok = 1) &&
 319 #endif
 320             ((*p = wait->next) == wait)) {
 321                 *p = NULL;
 322         } else {
 323                 tmp = wait;
 324                 while (tmp->next != wait) {
 325                         tmp = tmp->next;
 326 #ifdef DEBUG
 327                         if (tmp == *p)
 328                                 ok = 1;
 329 #endif
 330                 }
 331                 tmp->next = wait->next;
 332         }
 333         wait->next = NULL;
 334         restore_flags(flags);
 335 #ifdef DEBUG
 336         if (!ok) {
 337                 printk("removed wait_queue not on list.\n");
 338                 printk("list = %08x, queue = %08x\n",(unsigned long) p, (unsigned long) wait);
 339                 __asm__("call 1f\n1:\tpopl %0":"=r" (ok));
 340                 printk("eip = %08x\n",ok);
 341         }
 342 #endif
 343 }
 344 
 345 extern inline void select_wait(struct wait_queue ** wait_address, select_table * p)
     /* [previous][next][first][last][top][bottom][index][help] */
 346 {
 347         struct select_table_entry * entry;
 348 
 349         if (!p || !wait_address)
 350                 return;
 351         if (p->nr >= __MAX_SELECT_TABLE_ENTRIES)
 352                 return;
 353         entry = p->entry + p->nr;
 354         entry->wait_address = wait_address;
 355         entry->wait.task = current;
 356         entry->wait.next = NULL;
 357         add_wait_queue(wait_address,&entry->wait);
 358         p->nr++;
 359 }
 360 
 361 extern void __down(struct semaphore * sem);
 362 
 363 /*
 364  * These are not yet interrupt-safe
 365  */
 366 extern inline void down(struct semaphore * sem)
     /* [previous][next][first][last][top][bottom][index][help] */
 367 {
 368         if (sem->count <= 0)
 369                 __down(sem);
 370         sem->count--;
 371 }
 372 
 373 extern inline void up(struct semaphore * sem)
     /* [previous][next][first][last][top][bottom][index][help] */
 374 {
 375         sem->count++;
 376         wake_up(&sem->wait);
 377 }       
 378 
 379 #define REMOVE_LINKS(p) do { unsigned long flags; \
 380         save_flags(flags) ; cli(); \
 381         (p)->next_task->prev_task = (p)->prev_task; \
 382         (p)->prev_task->next_task = (p)->next_task; \
 383         restore_flags(flags); \
 384         if ((p)->p_osptr) \
 385                 (p)->p_osptr->p_ysptr = (p)->p_ysptr; \
 386         if ((p)->p_ysptr) \
 387                 (p)->p_ysptr->p_osptr = (p)->p_osptr; \
 388         else \
 389                 (p)->p_pptr->p_cptr = (p)->p_osptr; \
 390         } while (0)
 391 
 392 #define SET_LINKS(p) do { unsigned long flags; \
 393         save_flags(flags); cli(); \
 394         (p)->next_task = &init_task; \
 395         (p)->prev_task = init_task.prev_task; \
 396         init_task.prev_task->next_task = (p); \
 397         init_task.prev_task = (p); \
 398         restore_flags(flags); \
 399         (p)->p_ysptr = NULL; \
 400         if (((p)->p_osptr = (p)->p_pptr->p_cptr) != NULL) \
 401                 (p)->p_osptr->p_ysptr = p; \
 402         (p)->p_pptr->p_cptr = p; \
 403         } while (0)
 404 
 405 #define for_each_task(p) \
 406         for (p = &init_task ; (p = p->next_task) != &init_task ; )
 407 
 408 #endif /* __KERNEL__ */
 409 
 410 #endif

/* [previous][next][first][last][top][bottom][index][help] */