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
  6. _get_base
  7. get_limit

   1 #ifndef _LINUX_SCHED_H
   2 #define _LINUX_SCHED_H
   3 
   4 #define NEW_SWAP
   5 
   6 /*
   7  * define DEBUG if you want the wait-queues to have some extra
   8  * debugging code. It's not normally used, but might catch some
   9  * wait-queue coding errors.
  10  *
  11  *  #define DEBUG
  12  */
  13 
  14 #define HZ 100
  15 
  16 /*
  17  * System setup flags..
  18  */
  19 extern int hard_math;
  20 extern int x86;
  21 extern int ignore_irq13;
  22 extern int wp_works_ok;
  23 
  24 /*
  25  * Bus types (default is ISA, but people can check others with these..)
  26  * MCA_bus hardcoded to 0 for now.
  27  */
  28 extern int EISA_bus;
  29 #define MCA_bus 0
  30 
  31 #include <linux/tasks.h>
  32 #include <asm/system.h>
  33 
  34 /*
  35  * User space process size: 3GB. This is hardcoded into a few places,
  36  * so don't change it unless you know what you are doing.
  37  */
  38 #define TASK_SIZE       0xc0000000
  39 
  40 /*
  41  * Size of io_bitmap in longwords: 32 is ports 0-0x3ff.
  42  */
  43 #define IO_BITMAP_SIZE  32
  44 
  45 /*
  46  * These are the constant used to fake the fixed-point load-average
  47  * counting. Some notes:
  48  *  - 11 bit fractions expand to 22 bits by the multiplies: this gives
  49  *    a load-average precision of 10 bits integer + 11 bits fractional
  50  *  - if you want to count load-averages more often, you need more
  51  *    precision, or rounding will get you. With 2-second counting freq,
  52  *    the EXP_n values would be 1981, 2034 and 2043 if still using only
  53  *    11 bit fractions.
  54  */
  55 extern unsigned long avenrun[];         /* Load averages */
  56 
  57 #define FSHIFT          11              /* nr of bits of precision */
  58 #define FIXED_1         (1<<FSHIFT)     /* 1.0 as fixed-point */
  59 #define LOAD_FREQ       (5*HZ)          /* 5 sec intervals */
  60 #define EXP_1           1884            /* 1/exp(5sec/1min) as fixed-point */
  61 #define EXP_5           2014            /* 1/exp(5sec/5min) */
  62 #define EXP_15          2037            /* 1/exp(5sec/15min) */
  63 
  64 #define CALC_LOAD(load,exp,n) \
  65         load *= exp; \
  66         load += n*(FIXED_1-exp); \
  67         load >>= FSHIFT;
  68 
  69 #define CT_TO_SECS(x)   ((x) / HZ)
  70 #define CT_TO_USECS(x)  (((x) % HZ) * 1000000/HZ)
  71 
  72 #define FIRST_TASK task[0]
  73 #define LAST_TASK task[NR_TASKS-1]
  74 
  75 #include <linux/head.h>
  76 #include <linux/fs.h>
  77 #include <linux/mm.h>
  78 #include <linux/signal.h>
  79 #include <linux/time.h>
  80 #include <linux/param.h>
  81 #include <linux/resource.h>
  82 #include <linux/vm86.h>
  83 #include <linux/math_emu.h>
  84 
  85 #define TASK_RUNNING            0
  86 #define TASK_INTERRUPTIBLE      1
  87 #define TASK_UNINTERRUPTIBLE    2
  88 #define TASK_ZOMBIE             3
  89 #define TASK_STOPPED            4
  90 #define TASK_SWAPPING           5
  91 
  92 #ifndef NULL
  93 #define NULL ((void *) 0)
  94 #endif
  95 
  96 #ifdef __KERNEL__
  97 
  98 extern void sched_init(void);
  99 extern void show_state(void);
 100 extern void trap_init(void);
 101 
 102 asmlinkage void schedule(void);
 103 
 104 #endif /* __KERNEL__ */
 105 
 106 struct i387_hard_struct {
 107         long    cwd;
 108         long    swd;
 109         long    twd;
 110         long    fip;
 111         long    fcs;
 112         long    foo;
 113         long    fos;
 114         long    st_space[20];   /* 8*10 bytes for each FP-reg = 80 bytes */
 115 };
 116 
 117 struct i387_soft_struct {
 118         long    cwd;
 119         long    swd;
 120         long    twd;
 121         long    fip;
 122         long    fcs;
 123         long    foo;
 124         long    fos;
 125         long    top;
 126         struct fpu_reg  regs[8];        /* 8*16 bytes for each FP-reg = 128 bytes */
 127         unsigned char   lookahead;
 128         struct info     *info;
 129         unsigned long   entry_eip;
 130 };
 131 
 132 union i387_union {
 133         struct i387_hard_struct hard;
 134         struct i387_soft_struct soft;
 135 };
 136 
 137 struct tss_struct {
 138         unsigned short  back_link,__blh;
 139         unsigned long   esp0;
 140         unsigned short  ss0,__ss0h;
 141         unsigned long   esp1;
 142         unsigned short  ss1,__ss1h;
 143         unsigned long   esp2;
 144         unsigned short  ss2,__ss2h;
 145         unsigned long   cr3;
 146         unsigned long   eip;
 147         unsigned long   eflags;
 148         unsigned long   eax,ecx,edx,ebx;
 149         unsigned long   esp;
 150         unsigned long   ebp;
 151         unsigned long   esi;
 152         unsigned long   edi;
 153         unsigned short  es, __esh;
 154         unsigned short  cs, __csh;
 155         unsigned short  ss, __ssh;
 156         unsigned short  ds, __dsh;
 157         unsigned short  fs, __fsh;
 158         unsigned short  gs, __gsh;
 159         unsigned short  ldt, __ldth;
 160         unsigned short  trace, bitmap;
 161         unsigned long   io_bitmap[IO_BITMAP_SIZE+1];
 162         unsigned long   tr;
 163         unsigned long   cr2, trap_no, error_code;
 164         union i387_union i387;
 165 };
 166 
 167 struct task_struct {
 168 /* these are hardcoded - don't touch */
 169         volatile long state;    /* -1 unrunnable, 0 runnable, >0 stopped */
 170         long counter;
 171         long priority;
 172         unsigned long signal;
 173         unsigned long blocked;  /* bitmap of masked signals */
 174         unsigned long flags;    /* per process flags, defined below */
 175         int errno;
 176         int debugreg[8];  /* Hardware debugging registers */
 177 /* various fields */
 178         struct task_struct *next_task, *prev_task;
 179         struct sigaction sigaction[32];
 180         unsigned long saved_kernel_stack;
 181         unsigned long kernel_stack_page;
 182         int exit_code, exit_signal;
 183         int elf_executable:1;
 184         int dumpable:1;
 185         int swappable:1;
 186         unsigned long start_code,end_code,end_data,start_brk,brk,start_stack,start_mmap;
 187         unsigned long arg_start, arg_end, env_start, env_end;
 188         int pid,pgrp,session,leader;
 189         int     groups[NGROUPS];
 190         /* 
 191          * pointers to (original) parent process, youngest child, younger sibling,
 192          * older sibling, respectively.  (p->father can be replaced with 
 193          * p->p_pptr->pid)
 194          */
 195         struct task_struct *p_opptr,*p_pptr, *p_cptr, *p_ysptr, *p_osptr;
 196         struct wait_queue *wait_chldexit;       /* for wait4() */
 197         /*
 198          * For ease of programming... Normal sleeps don't need to
 199          * keep track of a wait-queue: every task has an entry of its own
 200          */
 201         unsigned short uid,euid,suid;
 202         unsigned short gid,egid,sgid;
 203         unsigned long timeout;
 204         unsigned long it_real_value, it_prof_value, it_virt_value;
 205         unsigned long it_real_incr, it_prof_incr, it_virt_incr;
 206         long utime,stime,cutime,cstime,start_time;
 207         unsigned long min_flt, maj_flt;
 208         unsigned long cmin_flt, cmaj_flt;
 209         struct rlimit rlim[RLIM_NLIMITS]; 
 210         unsigned short used_math;
 211         unsigned short rss;     /* number of resident pages */
 212         char comm[16];
 213         struct vm86_struct * vm86_info;
 214         unsigned long screen_bitmap;
 215 /* file system info */
 216         int link_count;
 217         int tty;                /* -1 if no tty, so it must be signed */
 218         unsigned short umask;
 219         struct inode * pwd;
 220         struct inode * root;
 221         struct inode * executable;
 222         struct vm_area_struct * mmap;
 223         struct shm_desc *shm;
 224         struct sem_undo *semun;
 225         struct file * filp[NR_OPEN];
 226         fd_set close_on_exec;
 227 /* ldt for this task - used by Wine.  If NULL, default_ldt is used */
 228         struct desc_struct *ldt;
 229 /* tss for this task */
 230         struct tss_struct tss;
 231 #ifdef NEW_SWAP
 232         unsigned long old_maj_flt;      /* old value of maj_flt */
 233         unsigned long dec_flt;          /* page fault count of the last time */
 234         unsigned long swap_cnt;         /* number of pages to swap on next pass */
 235         short swap_table;               /* current page table */
 236         short swap_page;                /* current page */
 237 #endif NEW_SWAP
 238         struct vm_area_struct *stk_vma;
 239 };
 240 
 241 /*
 242  * Per process flags
 243  */
 244 #define PF_ALIGNWARN    0x00000001      /* Print alignment warning msgs */
 245                                         /* Not implemented yet, only for 486*/
 246 #define PF_PTRACED      0x00000010      /* set if ptrace (0) has been called. */
 247 #define PF_TRACESYS     0x00000020      /* tracing system calls */
 248 
 249 /*
 250  * cloning flags:
 251  */
 252 #define CSIGNAL         0x000000ff      /* signal mask to be sent at exit */
 253 #define COPYVM          0x00000100      /* set if VM copy desired (like normal fork()) */
 254 #define COPYFD          0x00000200      /* set if fd's should be copied, not shared (NI) */
 255 
 256 /*
 257  *  INIT_TASK is used to set up the first task table, touch at
 258  * your own risk!. Base=0, limit=0x1fffff (=2MB)
 259  */
 260 #define INIT_TASK \
 261 /* state etc */ { 0,15,15,0,0,0,0, \
 262 /* debugregs */ { 0, },            \
 263 /* schedlink */ &init_task,&init_task, \
 264 /* signals */   {{ 0, },}, \
 265 /* stack */     0,(unsigned long) &init_kernel_stack, \
 266 /* ec,brk... */ 0,0,0,0,0,0,0,0,0,0,0,0, \
 267 /* argv.. */    0,0,0,0, \
 268 /* pid etc.. */ 0,0,0,0, \
 269 /* suppl grps*/ {NOGROUP,}, \
 270 /* proc links*/ &init_task,&init_task,NULL,NULL,NULL,NULL, \
 271 /* uid etc */   0,0,0,0,0,0, \
 272 /* timeout */   0,0,0,0,0,0,0,0,0,0,0,0, \
 273 /* min_flt */   0,0,0,0, \
 274 /* rlimits */   { {LONG_MAX, LONG_MAX}, {LONG_MAX, LONG_MAX},  \
 275                   {LONG_MAX, LONG_MAX}, {LONG_MAX, LONG_MAX},  \
 276                   {       0, LONG_MAX}, {LONG_MAX, LONG_MAX}}, \
 277 /* math */      0, \
 278 /* rss */       2, \
 279 /* comm */      "swapper", \
 280 /* vm86_info */ NULL, 0, \
 281 /* fs info */   0,-1,0022,NULL,NULL,NULL,NULL, \
 282 /* ipc */       NULL, NULL, \
 283 /* filp */      {NULL,}, \
 284 /* cloe */      {{ 0, }}, \
 285 /* ldt */       NULL, \
 286 /*tss*/ {0,0, \
 287          sizeof(init_kernel_stack) + (long) &init_kernel_stack, KERNEL_DS, 0, \
 288          0,0,0,0,0,0, \
 289          (long) &swapper_pg_dir, \
 290          0,0,0,0,0,0,0,0,0,0, \
 291          USER_DS,0,USER_DS,0,USER_DS,0,USER_DS,0,USER_DS,0,USER_DS,0, \
 292          _LDT(0),0, \
 293          0, 0x8000, \
 294 /* ioperm */    {~0, }, \
 295          _TSS(0), 0, 0,0, \
 296 /* 387 state */ { { 0, }, } \
 297         } \
 298 }
 299 
 300 extern struct task_struct init_task;
 301 extern struct task_struct *task[NR_TASKS];
 302 extern struct task_struct *last_task_used_math;
 303 extern struct task_struct *current;
 304 extern unsigned long volatile jiffies;
 305 extern unsigned long itimer_ticks;
 306 extern unsigned long itimer_next;
 307 extern struct timeval xtime;
 308 extern int need_resched;
 309 
 310 #define CURRENT_TIME (xtime.tv_sec)
 311 
 312 extern void sleep_on(struct wait_queue ** p);
 313 extern void interruptible_sleep_on(struct wait_queue ** p);
 314 extern void wake_up(struct wait_queue ** p);
 315 extern void wake_up_interruptible(struct wait_queue ** p);
 316 
 317 extern void notify_parent(struct task_struct * tsk);
 318 extern int send_sig(unsigned long sig,struct task_struct * p,int priv);
 319 extern int in_group_p(gid_t grp);
 320 
 321 extern int request_irq(unsigned int irq,void (*handler)(int));
 322 extern void free_irq(unsigned int irq);
 323 extern int irqaction(unsigned int irq,struct sigaction * sa);
 324 
 325 /*
 326  * Entry into gdt where to find first TSS. GDT layout:
 327  *   0 - nul
 328  *   1 - kernel code segment
 329  *   2 - kernel data segment
 330  *   3 - user code segment
 331  *   4 - user data segment
 332  * ...
 333  *   8 - TSS #0
 334  *   9 - LDT #0
 335  *  10 - TSS #1
 336  *  11 - LDT #1
 337  */
 338 #define FIRST_TSS_ENTRY 8
 339 #define FIRST_LDT_ENTRY (FIRST_TSS_ENTRY+1)
 340 #define _TSS(n) ((((unsigned long) n)<<4)+(FIRST_TSS_ENTRY<<3))
 341 #define _LDT(n) ((((unsigned long) n)<<4)+(FIRST_LDT_ENTRY<<3))
 342 #define load_TR(n) __asm__("ltr %%ax": /* no output */ :"a" (_TSS(n)))
 343 #define load_ldt(n) __asm__("lldt %%ax": /* no output */ :"a" (_LDT(n)))
 344 #define store_TR(n) \
 345 __asm__("str %%ax\n\t" \
 346         "subl %2,%%eax\n\t" \
 347         "shrl $4,%%eax" \
 348         :"=a" (n) \
 349         :"0" (0),"i" (FIRST_TSS_ENTRY<<3))
 350 /*
 351  *      switch_to(n) should switch tasks to task nr n, first
 352  * checking that n isn't the current task, in which case it does nothing.
 353  * This also clears the TS-flag if the task we switched to has used
 354  * tha math co-processor latest.
 355  */
 356 #define switch_to(tsk) \
 357 __asm__("cmpl %%ecx,_current\n\t" \
 358         "je 1f\n\t" \
 359         "cli\n\t" \
 360         "xchgl %%ecx,_current\n\t" \
 361         "ljmp %0\n\t" \
 362         "sti\n\t" \
 363         "cmpl %%ecx,_last_task_used_math\n\t" \
 364         "jne 1f\n\t" \
 365         "clts\n" \
 366         "1:" \
 367         : /* no output */ \
 368         :"m" (*(((char *)&tsk->tss.tr)-4)), \
 369          "c" (tsk) \
 370         :"cx")
 371 
 372 #define _set_base(addr,base) \
 373 __asm__("movw %%dx,%0\n\t" \
 374         "rorl $16,%%edx\n\t" \
 375         "movb %%dl,%1\n\t" \
 376         "movb %%dh,%2" \
 377         : /* no output */ \
 378         :"m" (*((addr)+2)), \
 379          "m" (*((addr)+4)), \
 380          "m" (*((addr)+7)), \
 381          "d" (base) \
 382         :"dx")
 383 
 384 #define _set_limit(addr,limit) \
 385 __asm__("movw %%dx,%0\n\t" \
 386         "rorl $16,%%edx\n\t" \
 387         "movb %1,%%dh\n\t" \
 388         "andb $0xf0,%%dh\n\t" \
 389         "orb %%dh,%%dl\n\t" \
 390         "movb %%dl,%1" \
 391         : /* no output */ \
 392         :"m" (*(addr)), \
 393          "m" (*((addr)+6)), \
 394          "d" (limit) \
 395         :"dx")
 396 
 397 #define set_base(ldt,base) _set_base( ((char *)&(ldt)) , base )
 398 #define set_limit(ldt,limit) _set_limit( ((char *)&(ldt)) , (limit-1)>>12 )
 399 
 400 /*
 401  * The wait-queues are circular lists, and you have to be *very* sure
 402  * to keep them correct. Use only these two functions to add/remove
 403  * entries in the queues.
 404  */
 405 extern inline void add_wait_queue(struct wait_queue ** p, struct wait_queue * wait)
     /* [previous][next][first][last][top][bottom][index][help] */
 406 {
 407         unsigned long flags;
 408 
 409 #ifdef DEBUG
 410         if (wait->next) {
 411                 unsigned long pc;
 412                 __asm__ __volatile__("call 1f\n"
 413                         "1:\tpopl %0":"=r" (pc));
 414                 printk("add_wait_queue (%08x): wait->next = %08x\n",pc,(unsigned long) wait->next);
 415         }
 416 #endif
 417         save_flags(flags);
 418         cli();
 419         if (!*p) {
 420                 wait->next = wait;
 421                 *p = wait;
 422         } else {
 423                 wait->next = (*p)->next;
 424                 (*p)->next = wait;
 425         }
 426         restore_flags(flags);
 427 }
 428 
 429 extern inline void remove_wait_queue(struct wait_queue ** p, struct wait_queue * wait)
     /* [previous][next][first][last][top][bottom][index][help] */
 430 {
 431         unsigned long flags;
 432         struct wait_queue * tmp;
 433 #ifdef DEBUG
 434         unsigned long ok = 0;
 435 #endif
 436 
 437         save_flags(flags);
 438         cli();
 439         if ((*p == wait) &&
 440 #ifdef DEBUG
 441             (ok = 1) &&
 442 #endif
 443             ((*p = wait->next) == wait)) {
 444                 *p = NULL;
 445         } else {
 446                 tmp = wait;
 447                 while (tmp->next != wait) {
 448                         tmp = tmp->next;
 449 #ifdef DEBUG
 450                         if (tmp == *p)
 451                                 ok = 1;
 452 #endif
 453                 }
 454                 tmp->next = wait->next;
 455         }
 456         wait->next = NULL;
 457         restore_flags(flags);
 458 #ifdef DEBUG
 459         if (!ok) {
 460                 printk("removed wait_queue not on list.\n");
 461                 printk("list = %08x, queue = %08x\n",(unsigned long) p, (unsigned long) wait);
 462                 __asm__("call 1f\n1:\tpopl %0":"=r" (ok));
 463                 printk("eip = %08x\n",ok);
 464         }
 465 #endif
 466 }
 467 
 468 extern inline void select_wait(struct wait_queue ** wait_address, select_table * p)
     /* [previous][next][first][last][top][bottom][index][help] */
 469 {
 470         struct select_table_entry * entry;
 471 
 472         if (!p || !wait_address)
 473                 return;
 474         if (p->nr >= __MAX_SELECT_TABLE_ENTRIES)
 475                 return;
 476         entry = p->entry + p->nr;
 477         entry->wait_address = wait_address;
 478         entry->wait.task = current;
 479         entry->wait.next = NULL;
 480         add_wait_queue(wait_address,&entry->wait);
 481         p->nr++;
 482 }
 483 
 484 extern void __down(struct semaphore * sem);
 485 
 486 extern inline void down(struct semaphore * sem)
     /* [previous][next][first][last][top][bottom][index][help] */
 487 {
 488         if (sem->count <= 0)
 489                 __down(sem);
 490         sem->count--;
 491 }
 492 
 493 extern inline void up(struct semaphore * sem)
     /* [previous][next][first][last][top][bottom][index][help] */
 494 {
 495         sem->count++;
 496         wake_up(&sem->wait);
 497 }       
 498 
 499 static inline unsigned long _get_base(char * addr)
     /* [previous][next][first][last][top][bottom][index][help] */
 500 {
 501         unsigned long __base;
 502         __asm__("movb %3,%%dh\n\t"
 503                 "movb %2,%%dl\n\t"
 504                 "shll $16,%%edx\n\t"
 505                 "movw %1,%%dx"
 506                 :"=&d" (__base)
 507                 :"m" (*((addr)+2)),
 508                  "m" (*((addr)+4)),
 509                  "m" (*((addr)+7)));
 510         return __base;
 511 }
 512 
 513 #define get_base(ldt) _get_base( ((char *)&(ldt)) )
 514 
 515 static inline unsigned long get_limit(unsigned long segment)
     /* [previous][next][first][last][top][bottom][index][help] */
 516 {
 517         unsigned long __limit;
 518         __asm__("lsll %1,%0"
 519                 :"=r" (__limit):"r" (segment));
 520         return __limit+1;
 521 }
 522 
 523 #define REMOVE_LINKS(p) do { unsigned long flags; \
 524         save_flags(flags) ; cli(); \
 525         (p)->next_task->prev_task = (p)->prev_task; \
 526         (p)->prev_task->next_task = (p)->next_task; \
 527         restore_flags(flags); \
 528         if ((p)->p_osptr) \
 529                 (p)->p_osptr->p_ysptr = (p)->p_ysptr; \
 530         if ((p)->p_ysptr) \
 531                 (p)->p_ysptr->p_osptr = (p)->p_osptr; \
 532         else \
 533                 (p)->p_pptr->p_cptr = (p)->p_osptr; \
 534         } while (0)
 535 
 536 #define SET_LINKS(p) do { unsigned long flags; \
 537         save_flags(flags); cli(); \
 538         (p)->next_task = &init_task; \
 539         (p)->prev_task = init_task.prev_task; \
 540         init_task.prev_task->next_task = (p); \
 541         init_task.prev_task = (p); \
 542         restore_flags(flags); \
 543         (p)->p_ysptr = NULL; \
 544         if (((p)->p_osptr = (p)->p_pptr->p_cptr) != NULL) \
 545                 (p)->p_osptr->p_ysptr = p; \
 546         (p)->p_pptr->p_cptr = p; \
 547         } while (0)
 548 
 549 #define for_each_task(p) \
 550         for (p = &init_task ; (p = p->next_task) != &init_task ; )
 551 
 552 /*
 553  * This is the ldt that every process will get unless we need
 554  * something other than this.
 555  */
 556 extern struct desc_struct default_ldt;
 557 
 558 /* This special macro can be used to load a debugging register */
 559 
 560 #define loaddebug(register) \
 561                 __asm__("movl %0,%%edx\n\t" \
 562                         "movl %%edx,%%db" #register "\n\t" \
 563                         : /* no output */ \
 564                         :"m" (current->debugreg[register]) \
 565                         :"dx");
 566 
 567 #endif

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