OpenCores
URL https://opencores.org/ocsvn/or1k_old/or1k_old/trunk

Subversion Repositories or1k_old

[/] [or1k_old/] [trunk/] [rc203soc/] [sw/] [uClinux/] [include/] [linux/] [sched.h] - Diff between revs 1765 and 1782

Only display areas with differences | Details | Blame | View Log

Rev 1765 Rev 1782
#ifndef _LINUX_SCHED_H
#ifndef _LINUX_SCHED_H
#define _LINUX_SCHED_H
#define _LINUX_SCHED_H
 
 
/*
/*
 * define DEBUG if you want the wait-queues to have some extra
 * define DEBUG if you want the wait-queues to have some extra
 * debugging code. It's not normally used, but might catch some
 * debugging code. It's not normally used, but might catch some
 * wait-queue coding errors.
 * wait-queue coding errors.
 *
 *
 *  #define DEBUG
 *  #define DEBUG
 */
 */
 
 
/*
/*
 * uClinux revisions for NO_MM
 * uClinux revisions for NO_MM
 * Copyright (C) 1998  Kenneth Albanowski <kjahds@kjahds.com>,
 * Copyright (C) 1998  Kenneth Albanowski <kjahds@kjahds.com>,
 *                     The Silver Hammer Group, Ltd.
 *                     The Silver Hammer Group, Ltd.
 */
 */
 
 
#include <asm/param.h>  /* for HZ */
#include <asm/param.h>  /* for HZ */
 
 
extern unsigned long event;
extern unsigned long event;
 
 
#include <linux/binfmts.h>
#include <linux/binfmts.h>
#include <linux/personality.h>
#include <linux/personality.h>
#include <linux/tasks.h>
#include <linux/tasks.h>
#include <linux/kernel.h>
#include <linux/kernel.h>
 
 
#include <asm/system.h>
#include <asm/system.h>
#include <asm/semaphore.h>
#include <asm/semaphore.h>
#include <asm/page.h>
#include <asm/page.h>
#include <asm/signal.h>
#include <asm/signal.h>
 
 
#include <linux/smp.h>
#include <linux/smp.h>
#include <linux/tty.h>
#include <linux/tty.h>
#include <linux/sem.h>
#include <linux/sem.h>
 
 
/*
/*
 * cloning flags:
 * cloning flags:
 */
 */
#define CSIGNAL         0x000000ff      /* signal mask to be sent at exit */
#define CSIGNAL         0x000000ff      /* signal mask to be sent at exit */
#define CLONE_VM        0x00000100      /* set if VM shared between processes */
#define CLONE_VM        0x00000100      /* set if VM shared between processes */
#define CLONE_FS        0x00000200      /* set if fs info 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_FILES     0x00000400      /* set if open files shared between processes */
#define CLONE_SIGHAND   0x00000800      /* set if signal handlers shared */
#define CLONE_SIGHAND   0x00000800      /* set if signal handlers shared */
#define CLONE_PID       0x00001000      /* set if pid shared */
#define CLONE_PID       0x00001000      /* set if pid shared */
 
 
#define CLONE_WAIT      0x00002000      /* set if parent should wait for child to exec or exit */
#define CLONE_WAIT      0x00002000      /* set if parent should wait for child to exec or exit */
 
 
/*
/*
 * These are the constant used to fake the fixed-point load-average
 * These are the constant used to fake the fixed-point load-average
 * counting. Some notes:
 * counting. Some notes:
 *  - 11 bit fractions expand to 22 bits by the multiplies: this gives
 *  - 11 bit fractions expand to 22 bits by the multiplies: this gives
 *    a load-average precision of 10 bits integer + 11 bits fractional
 *    a load-average precision of 10 bits integer + 11 bits fractional
 *  - if you want to count load-averages more often, you need more
 *  - if you want to count load-averages more often, you need more
 *    precision, or rounding will get you. With 2-second counting freq,
 *    precision, or rounding will get you. With 2-second counting freq,
 *    the EXP_n values would be 1981, 2034 and 2043 if still using only
 *    the EXP_n values would be 1981, 2034 and 2043 if still using only
 *    11 bit fractions.
 *    11 bit fractions.
 */
 */
extern unsigned long avenrun[];         /* Load averages */
extern unsigned long avenrun[];         /* Load averages */
 
 
#define FSHIFT          11              /* nr of bits of precision */
#define FSHIFT          11              /* nr of bits of precision */
#define FIXED_1         (1<<FSHIFT)     /* 1.0 as fixed-point */
#define FIXED_1         (1<<FSHIFT)     /* 1.0 as fixed-point */
#define LOAD_FREQ       (5*HZ)          /* 5 sec intervals */
#define LOAD_FREQ       (5*HZ)          /* 5 sec intervals */
#define EXP_1           1884            /* 1/exp(5sec/1min) as fixed-point */
#define EXP_1           1884            /* 1/exp(5sec/1min) as fixed-point */
#define EXP_5           2014            /* 1/exp(5sec/5min) */
#define EXP_5           2014            /* 1/exp(5sec/5min) */
#define EXP_15          2037            /* 1/exp(5sec/15min) */
#define EXP_15          2037            /* 1/exp(5sec/15min) */
 
 
#define CALC_LOAD(load,exp,n) \
#define CALC_LOAD(load,exp,n) \
        load *= exp; \
        load *= exp; \
        load += n*(FIXED_1-exp); \
        load += n*(FIXED_1-exp); \
        load >>= FSHIFT;
        load >>= FSHIFT;
 
 
#define CT_TO_SECS(x)   ((x) / HZ)
#define CT_TO_SECS(x)   ((x) / HZ)
#define CT_TO_USECS(x)  (((x) % HZ) * 1000000/HZ)
#define CT_TO_USECS(x)  (((x) % HZ) * 1000000/HZ)
 
 
extern int nr_running, nr_tasks;
extern int nr_running, nr_tasks;
extern int last_pid;
extern int last_pid;
 
 
#define FIRST_TASK task[0]
#define FIRST_TASK task[0]
#define LAST_TASK task[NR_TASKS-1]
#define LAST_TASK task[NR_TASKS-1]
 
 
#include <linux/head.h>
#include <linux/head.h>
#include <linux/fs.h>
#include <linux/fs.h>
#include <linux/signal.h>
#include <linux/signal.h>
#include <linux/time.h>
#include <linux/time.h>
#include <linux/param.h>
#include <linux/param.h>
#include <linux/resource.h>
#include <linux/resource.h>
#include <linux/ptrace.h>
#include <linux/ptrace.h>
#include <linux/timer.h>
#include <linux/timer.h>
 
 
#include <asm/processor.h>
#include <asm/processor.h>
 
 
#define TASK_RUNNING            0
#define TASK_RUNNING            0
#define TASK_INTERRUPTIBLE      1
#define TASK_INTERRUPTIBLE      1
#define TASK_UNINTERRUPTIBLE    2
#define TASK_UNINTERRUPTIBLE    2
#define TASK_ZOMBIE             3
#define TASK_ZOMBIE             3
#define TASK_STOPPED            4
#define TASK_STOPPED            4
#define TASK_SWAPPING           5
#define TASK_SWAPPING           5
 
 
/*
/*
 * Scheduling policies
 * Scheduling policies
 */
 */
#define SCHED_OTHER             0
#define SCHED_OTHER             0
#define SCHED_FIFO              1
#define SCHED_FIFO              1
#define SCHED_RR                2
#define SCHED_RR                2
 
 
struct sched_param {
struct sched_param {
        int sched_priority;
        int sched_priority;
};
};
 
 
#ifndef NULL
#ifndef NULL
#define NULL ((void *) 0)
#define NULL ((void *) 0)
#endif
#endif
 
 
#ifdef __KERNEL__
#ifdef __KERNEL__
 
 
extern void sched_init(void);
extern void sched_init(void);
extern void show_state(void);
extern void show_state(void);
extern void trap_init(void);
extern void trap_init(void);
 
 
asmlinkage void schedule(void);
asmlinkage void schedule(void);
 
 
/* Open file table structure */
/* Open file table structure */
struct files_struct {
struct files_struct {
        int count;
        int count;
        fd_set close_on_exec;
        fd_set close_on_exec;
        fd_set open_fds;
        fd_set open_fds;
        struct file * fd[NR_OPEN];
        struct file * fd[NR_OPEN];
};
};
 
 
#define INIT_FILES { \
#define INIT_FILES { \
        1, \
        1, \
        { { 0, } }, \
        { { 0, } }, \
        { { 0, } }, \
        { { 0, } }, \
        { NULL, } \
        { NULL, } \
}
}
 
 
struct fs_struct {
struct fs_struct {
        int count;
        int count;
        unsigned short umask;
        unsigned short umask;
        struct inode * root, * pwd;
        struct inode * root, * pwd;
};
};
 
 
#define INIT_FS { \
#define INIT_FS { \
        1, \
        1, \
        0022, \
        0022, \
        NULL, NULL \
        NULL, NULL \
}
}
 
 
#ifndef NO_MM
#ifndef NO_MM
struct mm_struct {
struct mm_struct {
        int count;
        int count;
        pgd_t * pgd;
        pgd_t * pgd;
        unsigned long context;
        unsigned long context;
        unsigned long start_code, end_code, start_data, end_data;
        unsigned long start_code, end_code, start_data, end_data;
        unsigned long start_brk, brk, start_stack, start_mmap;
        unsigned long start_brk, brk, start_stack, start_mmap;
        unsigned long arg_start, arg_end, env_start, env_end;
        unsigned long arg_start, arg_end, env_start, env_end;
        unsigned long rss, total_vm, locked_vm;
        unsigned long rss, total_vm, locked_vm;
        unsigned long def_flags;
        unsigned long def_flags;
        struct vm_area_struct * mmap;
        struct vm_area_struct * mmap;
        struct vm_area_struct * mmap_avl;
        struct vm_area_struct * mmap_avl;
        struct semaphore mmap_sem;
        struct semaphore mmap_sem;
};
};
 
 
#define INIT_MM { \
#define INIT_MM { \
                1, \
                1, \
                swapper_pg_dir, \
                swapper_pg_dir, \
                0, \
                0, \
                0, 0, 0, 0, \
                0, 0, 0, 0, \
                0, 0, 0, 0, \
                0, 0, 0, 0, \
                0, 0, 0, 0, \
                0, 0, 0, 0, \
                0, 0, 0, \
                0, 0, 0, \
                0, \
                0, \
                &init_mmap, &init_mmap, MUTEX }
                &init_mmap, &init_mmap, MUTEX }
#else /* NO_MM */
#else /* NO_MM */
struct mm_rblock_struct {
struct mm_rblock_struct {
        int size;
        int size;
        int refcount;
        int refcount;
        void * kblock;
        void * kblock;
};
};
struct mm_tblock_struct {
struct mm_tblock_struct {
        struct mm_rblock_struct * rblock;
        struct mm_rblock_struct * rblock;
        struct mm_tblock_struct * next;
        struct mm_tblock_struct * next;
};
};
struct mm_struct {
struct mm_struct {
        int count;
        int count;
        unsigned long context;
        unsigned long context;
        unsigned long start_code, end_code, start_data, end_data;
        unsigned long start_code, end_code, start_data, end_data;
        unsigned long start_brk, brk, start_stack, start_mmap;
        unsigned long start_brk, brk, start_stack, start_mmap;
        unsigned long arg_start, arg_end, env_start, env_end;
        unsigned long arg_start, arg_end, env_start, env_end;
        unsigned long rss, total_vm, locked_vm;
        unsigned long rss, total_vm, locked_vm;
        unsigned long def_flags;
        unsigned long def_flags;
        struct wait_queue * vforkwait;
        struct wait_queue * vforkwait;
        struct inode * executable;
        struct inode * executable;
        struct mm_tblock_struct tblock;
        struct mm_tblock_struct tblock;
};
};
 
 
#define INIT_MM { \
#define INIT_MM { \
                1, \
                1, \
                0, \
                0, \
                0, 0, 0, 0, \
                0, 0, 0, 0, \
                0, 0, 0, 0, \
                0, 0, 0, 0, \
                0, 0, 0, 0, \
                0, 0, 0, 0, \
                0, 0, 0, \
                0, 0, 0, \
                0, \
                0, \
                0, \
                0, \
                0, \
                0, \
                { 0, 0} }
                { 0, 0} }
#endif /* NO_MM */
#endif /* NO_MM */
 
 
 
 
struct signal_struct {
struct signal_struct {
        int count;
        int count;
        struct sigaction action[NSIG];
        struct sigaction action[NSIG];
};
};
 
 
#define INIT_SIGNALS { \
#define INIT_SIGNALS { \
                1, \
                1, \
                { {0,}, } }
                { {0,}, } }
 
 
struct task_struct {
struct task_struct {
/* these are hardcoded - don't touch */
/* these are hardcoded - don't touch */
        volatile long state;    /* -1 unrunnable, 0 runnable, >0 stopped */
        volatile long state;    /* -1 unrunnable, 0 runnable, >0 stopped */
        long counter;
        long counter;
        long priority;
        long priority;
        unsigned long signal;
        unsigned long signal;
        unsigned long blocked;  /* bitmap of masked signals */
        unsigned long blocked;  /* bitmap of masked signals */
        unsigned long flags;    /* per process flags, defined below */
        unsigned long flags;    /* per process flags, defined below */
        int errno;
        int errno;
        long debugreg[8];  /* Hardware debugging registers */
        long debugreg[8];  /* Hardware debugging registers */
        struct exec_domain *exec_domain;
        struct exec_domain *exec_domain;
/* various fields */
/* various fields */
        struct linux_binfmt *binfmt;
        struct linux_binfmt *binfmt;
        struct task_struct *next_task, *prev_task;
        struct task_struct *next_task, *prev_task;
        struct task_struct *next_run,  *prev_run;
        struct task_struct *next_run,  *prev_run;
        unsigned long saved_kernel_stack;
        unsigned long saved_kernel_stack;
        unsigned long kernel_stack_page;
        unsigned long kernel_stack_page;
        int exit_code, exit_signal;
        int exit_code, exit_signal;
        /* ??? */
        /* ??? */
        unsigned long personality;
        unsigned long personality;
        int dumpable:1;
        int dumpable:1;
        int did_exec:1;
        int did_exec:1;
        /* shouldn't this be pid_t? */
        /* shouldn't this be pid_t? */
        int pid;
        int pid;
        int pgrp;
        int pgrp;
        int tty_old_pgrp;
        int tty_old_pgrp;
        int session;
        int session;
        /* boolean value for session group leader */
        /* boolean value for session group leader */
        int leader;
        int leader;
        int     groups[NGROUPS];
        int     groups[NGROUPS];
        /*
        /*
         * pointers to (original) parent process, youngest child, younger sibling,
         * pointers to (original) parent process, youngest child, younger sibling,
         * older sibling, respectively.  (p->father can be replaced with
         * older sibling, respectively.  (p->father can be replaced with
         * p->p_pptr->pid)
         * p->p_pptr->pid)
         */
         */
        struct task_struct *p_opptr, *p_pptr, *p_cptr, *p_ysptr, *p_osptr;
        struct task_struct *p_opptr, *p_pptr, *p_cptr, *p_ysptr, *p_osptr;
        struct wait_queue *wait_chldexit;       /* for wait4() */
        struct wait_queue *wait_chldexit;       /* for wait4() */
        unsigned short uid,euid,suid,fsuid;
        unsigned short uid,euid,suid,fsuid;
        unsigned short gid,egid,sgid,fsgid;
        unsigned short gid,egid,sgid,fsgid;
        unsigned long timeout, policy, rt_priority;
        unsigned long timeout, policy, rt_priority;
        unsigned long it_real_value, it_prof_value, it_virt_value;
        unsigned long it_real_value, it_prof_value, it_virt_value;
        unsigned long it_real_incr, it_prof_incr, it_virt_incr;
        unsigned long it_real_incr, it_prof_incr, it_virt_incr;
        struct timer_list real_timer;
        struct timer_list real_timer;
        long utime, stime, cutime, cstime, start_time;
        long utime, stime, cutime, cstime, start_time;
/* mm fault and swap info: this can arguably be seen as either mm-specific or thread-specific */
/* mm fault and swap info: this can arguably be seen as either mm-specific or thread-specific */
        unsigned long min_flt, maj_flt, nswap, cmin_flt, cmaj_flt, cnswap;
        unsigned long min_flt, maj_flt, nswap, cmin_flt, cmaj_flt, cnswap;
        int swappable:1;
        int swappable:1;
        unsigned long swap_address;
        unsigned long swap_address;
        unsigned long old_maj_flt;      /* old value of maj_flt */
        unsigned long old_maj_flt;      /* old value of maj_flt */
        unsigned long dec_flt;          /* page fault count of the last time */
        unsigned long dec_flt;          /* page fault count of the last time */
        unsigned long swap_cnt;         /* number of pages to swap on next pass */
        unsigned long swap_cnt;         /* number of pages to swap on next pass */
/* limits */
/* limits */
        struct rlimit rlim[RLIM_NLIMITS];
        struct rlimit rlim[RLIM_NLIMITS];
        unsigned short used_math;
        unsigned short used_math;
        char comm[16];
        char comm[16];
/* file system info */
/* file system info */
        int link_count;
        int link_count;
        struct tty_struct *tty; /* NULL if no tty */
        struct tty_struct *tty; /* NULL if no tty */
/* ipc stuff */
/* ipc stuff */
        struct sem_undo *semundo;
        struct sem_undo *semundo;
        struct sem_queue *semsleeping;
        struct sem_queue *semsleeping;
/* ldt for this task - used by Wine.  If NULL, default_ldt is used */
/* ldt for this task - used by Wine.  If NULL, default_ldt is used */
        struct desc_struct *ldt;
        struct desc_struct *ldt;
/* tss for this task */
/* tss for this task */
        struct thread_struct tss;
        struct thread_struct tss;
/* filesystem information */
/* filesystem information */
        struct fs_struct *fs;
        struct fs_struct *fs;
/* open file information */
/* open file information */
        struct files_struct *files;
        struct files_struct *files;
/* memory management info */
/* memory management info */
        struct mm_struct *mm;
        struct mm_struct *mm;
/* signal handlers */
/* signal handlers */
        struct signal_struct *sig;
        struct signal_struct *sig;
#ifdef __SMP__
#ifdef __SMP__
        int processor;
        int processor;
        int last_processor;
        int last_processor;
        int lock_depth;         /* Lock depth. We can context switch in and out of holding a syscall kernel lock... */
        int lock_depth;         /* Lock depth. We can context switch in and out of holding a syscall kernel lock... */
#endif  
#endif  
};
};
 
 
/*
/*
 * Per process flags
 * Per process flags
 */
 */
#define PF_ALIGNWARN    0x00000001      /* Print alignment warning msgs */
#define PF_ALIGNWARN    0x00000001      /* Print alignment warning msgs */
                                        /* Not implemented yet, only for 486*/
                                        /* Not implemented yet, only for 486*/
#define PF_PTRACED      0x00000010      /* set if ptrace (0) has been called. */
#define PF_PTRACED      0x00000010      /* set if ptrace (0) has been called. */
#define PF_TRACESYS     0x00000020      /* tracing system calls */
#define PF_TRACESYS     0x00000020      /* tracing system calls */
#define PF_FORKNOEXEC   0x00000040      /* forked but didn't exec */
#define PF_FORKNOEXEC   0x00000040      /* forked but didn't exec */
#define PF_SUPERPRIV    0x00000100      /* used super-user privileges */
#define PF_SUPERPRIV    0x00000100      /* used super-user privileges */
#define PF_DUMPCORE     0x00000200      /* dumped core */
#define PF_DUMPCORE     0x00000200      /* dumped core */
#define PF_SIGNALED     0x00000400      /* killed by a signal */
#define PF_SIGNALED     0x00000400      /* killed by a signal */
 
 
#define PF_STARTING     0x00000002      /* being created */
#define PF_STARTING     0x00000002      /* being created */
#define PF_EXITING      0x00000004      /* getting shut down */
#define PF_EXITING      0x00000004      /* getting shut down */
 
 
#define PF_USEDFPU      0x00100000      /* Process used the FPU this quantum (SMP only) */
#define PF_USEDFPU      0x00100000      /* Process used the FPU this quantum (SMP only) */
#define PF_DTRACE       0x00200000      /* delayed trace (used on m68k) */
#define PF_DTRACE       0x00200000      /* delayed trace (used on m68k) */
#define PF_ONSIGSTK     0x00400000      /* works on signal stack (m68k only) */
#define PF_ONSIGSTK     0x00400000      /* works on signal stack (m68k only) */
 
 
/*
/*
 * Limit the stack by to some sane default: root can always
 * Limit the stack by to some sane default: root can always
 * increase this limit if needed..  8MB seems reasonable.
 * increase this limit if needed..  8MB seems reasonable.
 */
 */
#define _STK_LIM        (8*1024*1024)
#define _STK_LIM        (8*1024*1024)
 
 
#define DEF_PRIORITY    (20*HZ/100)     /* 200 ms time slices */
#define DEF_PRIORITY    (20*HZ/100)     /* 200 ms time slices */
 
 
/*
/*
 *  INIT_TASK is used to set up the first task table, touch at
 *  INIT_TASK is used to set up the first task table, touch at
 * your own risk!. Base=0, limit=0x1fffff (=2MB)
 * your own risk!. Base=0, limit=0x1fffff (=2MB)
 */
 */
#define INIT_TASK \
#define INIT_TASK \
/* state etc */ { 0,DEF_PRIORITY,DEF_PRIORITY,0,0,0,0, \
/* state etc */ { 0,DEF_PRIORITY,DEF_PRIORITY,0,0,0,0, \
/* debugregs */ { 0, },            \
/* debugregs */ { 0, },            \
/* exec domain */&default_exec_domain, \
/* exec domain */&default_exec_domain, \
/* binfmt */    NULL, \
/* binfmt */    NULL, \
/* schedlink */ &init_task,&init_task, &init_task, &init_task, \
/* schedlink */ &init_task,&init_task, &init_task, &init_task, \
/* stack */     0,(unsigned long) &init_kernel_stack, \
/* stack */     0,(unsigned long) &init_kernel_stack, \
/* ec,brk... */ 0,0,0,0,0, \
/* ec,brk... */ 0,0,0,0,0, \
/* pid etc.. */ 0,0,0,0,0, \
/* pid etc.. */ 0,0,0,0,0, \
/* suppl grps*/ {NOGROUP,}, \
/* suppl grps*/ {NOGROUP,}, \
/* proc links*/ &init_task,&init_task,NULL,NULL,NULL,NULL, \
/* proc links*/ &init_task,&init_task,NULL,NULL,NULL,NULL, \
/* uid etc */   0,0,0,0,0,0,0,0, \
/* uid etc */   0,0,0,0,0,0,0,0, \
/* timeout */   0,SCHED_OTHER,0,0,0,0,0,0,0, \
/* timeout */   0,SCHED_OTHER,0,0,0,0,0,0,0, \
/* timer */     { NULL, NULL, 0, 0, it_real_fn }, \
/* timer */     { NULL, NULL, 0, 0, it_real_fn }, \
/* utime */     0,0,0,0,0, \
/* utime */     0,0,0,0,0, \
/* flt */       0,0,0,0,0,0, \
/* flt */       0,0,0,0,0,0, \
/* swp */       0,0,0,0,0, \
/* swp */       0,0,0,0,0, \
/* rlimits */   INIT_RLIMITS, \
/* rlimits */   INIT_RLIMITS, \
/* math */      0, \
/* math */      0, \
/* comm */      "swapper", \
/* comm */      "swapper", \
/* fs info */   0,NULL, \
/* fs info */   0,NULL, \
/* ipc */       NULL, NULL, \
/* ipc */       NULL, NULL, \
/* ldt */       NULL, \
/* ldt */       NULL, \
/* tss */       INIT_TSS, \
/* tss */       INIT_TSS, \
/* fs */        &init_fs, \
/* fs */        &init_fs, \
/* files */     &init_files, \
/* files */     &init_files, \
/* mm */        &init_mm, \
/* mm */        &init_mm, \
/* signals */   &init_signals, \
/* signals */   &init_signals, \
}
}
 
 
extern struct   mm_struct init_mm;
extern struct   mm_struct init_mm;
extern struct task_struct init_task;
extern struct task_struct init_task;
extern struct task_struct *task[NR_TASKS];
extern struct task_struct *task[NR_TASKS];
extern struct task_struct *last_task_used_math;
extern struct task_struct *last_task_used_math;
extern struct task_struct *current_set[NR_CPUS];
extern struct task_struct *current_set[NR_CPUS];
/*
/*
 *      On a single processor system this comes out as current_set[0] when cpp
 *      On a single processor system this comes out as current_set[0] when cpp
 *      has finished with it, which gcc will optimise away.
 *      has finished with it, which gcc will optimise away.
 */
 */
#define current (0+current_set[smp_processor_id()])     /* Current on this processor */
#define current (0+current_set[smp_processor_id()])     /* Current on this processor */
extern unsigned long volatile jiffies;
extern unsigned long volatile jiffies;
extern unsigned long itimer_ticks;
extern unsigned long itimer_ticks;
extern unsigned long itimer_next;
extern unsigned long itimer_next;
/* SIMON: firbidden change of source file - won't compile with gcc 3.1 */
/* SIMON: firbidden change of source file - won't compile with gcc 3.1 */
extern volatile struct timeval xtime;
extern volatile struct timeval xtime;
extern int need_resched;
extern int need_resched;
extern void do_timer(struct pt_regs *);
extern void do_timer(struct pt_regs *);
 
 
extern unsigned int * prof_buffer;
extern unsigned int * prof_buffer;
extern unsigned long prof_len;
extern unsigned long prof_len;
extern unsigned long prof_shift;
extern unsigned long prof_shift;
 
 
extern int securelevel; /* system security level */
extern int securelevel; /* system security level */
 
 
#define CURRENT_TIME (xtime.tv_sec)
#define CURRENT_TIME (xtime.tv_sec)
 
 
extern void sleep_on(struct wait_queue ** p);
extern void sleep_on(struct wait_queue ** p);
extern void interruptible_sleep_on(struct wait_queue ** p);
extern void interruptible_sleep_on(struct wait_queue ** p);
extern void wake_up(struct wait_queue ** p);
extern void wake_up(struct wait_queue ** p);
extern void wake_up_interruptible(struct wait_queue ** p);
extern void wake_up_interruptible(struct wait_queue ** p);
extern void wake_up_process(struct task_struct * tsk);
extern void wake_up_process(struct task_struct * tsk);
 
 
extern void notify_parent(struct task_struct * tsk, int signal);
extern void notify_parent(struct task_struct * tsk, int signal);
extern void force_sig(unsigned long sig,struct task_struct * p);
extern void force_sig(unsigned long sig,struct task_struct * p);
extern int send_sig(unsigned long sig,struct task_struct * p,int priv);
extern int send_sig(unsigned long sig,struct task_struct * p,int priv);
extern int in_group_p(gid_t grp);
extern int in_group_p(gid_t grp);
 
 
extern int request_irq(unsigned int irq,
extern int request_irq(unsigned int irq,
                       void (*handler)(int, void *, struct pt_regs *),
                       void (*handler)(int, void *, struct pt_regs *),
                       unsigned long flags,
                       unsigned long flags,
                       const char *device,
                       const char *device,
                       void *dev_id);
                       void *dev_id);
extern void free_irq(unsigned int irq, void *dev_id);
extern void free_irq(unsigned int irq, void *dev_id);
 
 
/*
/*
 * This has now become a routine instead of a macro, it sets a flag if
 * This has now become a routine instead of a macro, it sets a flag if
 * it returns true (to do BSD-style accounting where the process is flagged
 * it returns true (to do BSD-style accounting where the process is flagged
 * if it uses root privs). The implication of this is that you should do
 * if it uses root privs). The implication of this is that you should do
 * normal permissions checks first, and check suser() last.
 * normal permissions checks first, and check suser() last.
 */
 */
extern inline int suser(void)
extern inline int suser(void)
{
{
        if (current->euid == 0) {
        if (current->euid == 0) {
                current->flags |= PF_SUPERPRIV;
                current->flags |= PF_SUPERPRIV;
                return 1;
                return 1;
        }
        }
        return 0;
        return 0;
}
}
 
 
extern void copy_thread(int, unsigned long, unsigned long, struct task_struct *, struct pt_regs *);
extern void copy_thread(int, unsigned long, unsigned long, struct task_struct *, struct pt_regs *);
extern void flush_thread(void);
extern void flush_thread(void);
extern void exit_thread(void);
extern void exit_thread(void);
 
 
extern void exit_mm(struct task_struct *);
extern void exit_mm(struct task_struct *);
extern void exit_fs(struct task_struct *);
extern void exit_fs(struct task_struct *);
extern void exit_files(struct task_struct *);
extern void exit_files(struct task_struct *);
extern void exit_sighand(struct task_struct *);
extern void exit_sighand(struct task_struct *);
extern void release_thread(struct task_struct *);
extern void release_thread(struct task_struct *);
 
 
extern int do_execve(char *, char **, char **, struct pt_regs *);
extern int do_execve(char *, char **, char **, struct pt_regs *);
extern int do_fork(unsigned long, unsigned long, struct pt_regs *);
extern int do_fork(unsigned long, unsigned long, struct pt_regs *);
 
 
 
 
/* See if we have a valid user level fd.
/* See if we have a valid user level fd.
 * If it makes sense, return the file structure it references.
 * If it makes sense, return the file structure it references.
 * Otherwise return NULL.
 * Otherwise return NULL.
 */
 */
extern inline struct file *file_from_fd(const unsigned int fd)
extern inline struct file *file_from_fd(const unsigned int fd)
{
{
 
 
        if (fd >= NR_OPEN)
        if (fd >= NR_OPEN)
                return NULL;
                return NULL;
        /* either valid or null */
        /* either valid or null */
        return current->files->fd[fd];
        return current->files->fd[fd];
}
}
 
 
/*
/*
 * The wait-queues are circular lists, and you have to be *very* sure
 * The wait-queues are circular lists, and you have to be *very* sure
 * to keep them correct. Use only these two functions to add/remove
 * to keep them correct. Use only these two functions to add/remove
 * entries in the queues.
 * entries in the queues.
 */
 */
extern inline void __add_wait_queue(struct wait_queue ** p, struct wait_queue * wait)
extern inline void __add_wait_queue(struct wait_queue ** p, struct wait_queue * wait)
{
{
        struct wait_queue *head = *p;
        struct wait_queue *head = *p;
        struct wait_queue *next = WAIT_QUEUE_HEAD(p);
        struct wait_queue *next = WAIT_QUEUE_HEAD(p);
 
 
        if (head)
        if (head)
                next = head;
                next = head;
        *p = wait;
        *p = wait;
        wait->next = next;
        wait->next = next;
}
}
 
 
extern inline void add_wait_queue(struct wait_queue ** p, struct wait_queue * wait)
extern inline void add_wait_queue(struct wait_queue ** p, struct wait_queue * wait)
{
{
        unsigned long flags;
        unsigned long flags;
 
 
        save_flags(flags);
        save_flags(flags);
        cli();
        cli();
        __add_wait_queue(p, wait);
        __add_wait_queue(p, wait);
        restore_flags(flags);
        restore_flags(flags);
}
}
 
 
extern inline void __remove_wait_queue(struct wait_queue ** p, struct wait_queue * wait)
extern inline void __remove_wait_queue(struct wait_queue ** p, struct wait_queue * wait)
{
{
        struct wait_queue * next = wait->next;
        struct wait_queue * next = wait->next;
        struct wait_queue * head = next;
        struct wait_queue * head = next;
 
 
        for (;;) {
        for (;;) {
                struct wait_queue * nextlist = head->next;
                struct wait_queue * nextlist = head->next;
                if (nextlist == wait)
                if (nextlist == wait)
                        break;
                        break;
                head = nextlist;
                head = nextlist;
        }
        }
        head->next = next;
        head->next = next;
}
}
 
 
extern inline void remove_wait_queue(struct wait_queue ** p, struct wait_queue * wait)
extern inline void remove_wait_queue(struct wait_queue ** p, struct wait_queue * wait)
{
{
        unsigned long flags;
        unsigned long flags;
 
 
        save_flags(flags);
        save_flags(flags);
        cli();
        cli();
        __remove_wait_queue(p, wait);
        __remove_wait_queue(p, wait);
        restore_flags(flags);
        restore_flags(flags);
}
}
 
 
extern inline void select_wait(struct wait_queue ** wait_address, select_table * p)
extern inline void select_wait(struct wait_queue ** wait_address, select_table * p)
{
{
        struct select_table_entry * entry;
        struct select_table_entry * entry;
 
 
        if (!p || !wait_address)
        if (!p || !wait_address)
                return;
                return;
        if (p->nr >= __MAX_SELECT_TABLE_ENTRIES)
        if (p->nr >= __MAX_SELECT_TABLE_ENTRIES)
                return;
                return;
        entry = p->entry + p->nr;
        entry = p->entry + p->nr;
        entry->wait_address = wait_address;
        entry->wait_address = wait_address;
        entry->wait.task = current;
        entry->wait.task = current;
        entry->wait.next = NULL;
        entry->wait.next = NULL;
        add_wait_queue(wait_address,&entry->wait);
        add_wait_queue(wait_address,&entry->wait);
        p->nr++;
        p->nr++;
}
}
 
 
#define REMOVE_LINKS(p) do { unsigned long flags; \
#define REMOVE_LINKS(p) do { unsigned long flags; \
        save_flags(flags) ; cli(); \
        save_flags(flags) ; cli(); \
        (p)->next_task->prev_task = (p)->prev_task; \
        (p)->next_task->prev_task = (p)->prev_task; \
        (p)->prev_task->next_task = (p)->next_task; \
        (p)->prev_task->next_task = (p)->next_task; \
        restore_flags(flags); \
        restore_flags(flags); \
        if ((p)->p_osptr) \
        if ((p)->p_osptr) \
                (p)->p_osptr->p_ysptr = (p)->p_ysptr; \
                (p)->p_osptr->p_ysptr = (p)->p_ysptr; \
        if ((p)->p_ysptr) \
        if ((p)->p_ysptr) \
                (p)->p_ysptr->p_osptr = (p)->p_osptr; \
                (p)->p_ysptr->p_osptr = (p)->p_osptr; \
        else \
        else \
                (p)->p_pptr->p_cptr = (p)->p_osptr; \
                (p)->p_pptr->p_cptr = (p)->p_osptr; \
        } while (0)
        } while (0)
 
 
#define SET_LINKS(p) do { unsigned long flags; \
#define SET_LINKS(p) do { unsigned long flags; \
        save_flags(flags); cli(); \
        save_flags(flags); cli(); \
        (p)->next_task = &init_task; \
        (p)->next_task = &init_task; \
        (p)->prev_task = init_task.prev_task; \
        (p)->prev_task = init_task.prev_task; \
        init_task.prev_task->next_task = (p); \
        init_task.prev_task->next_task = (p); \
        init_task.prev_task = (p); \
        init_task.prev_task = (p); \
        restore_flags(flags); \
        restore_flags(flags); \
        (p)->p_ysptr = NULL; \
        (p)->p_ysptr = NULL; \
        if (((p)->p_osptr = (p)->p_pptr->p_cptr) != NULL) \
        if (((p)->p_osptr = (p)->p_pptr->p_cptr) != NULL) \
                (p)->p_osptr->p_ysptr = p; \
                (p)->p_osptr->p_ysptr = p; \
        (p)->p_pptr->p_cptr = p; \
        (p)->p_pptr->p_cptr = p; \
        } while (0)
        } while (0)
 
 
#define for_each_task(p) \
#define for_each_task(p) \
        for (p = &init_task ; (p = p->next_task) != &init_task ; )
        for (p = &init_task ; (p = p->next_task) != &init_task ; )
 
 
#endif /* __KERNEL__ */
#endif /* __KERNEL__ */
 
 
#endif
#endif
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.