Ignore:
Timestamp:
Apr 25, 2005, 5:58:57 AM (20 years ago)
Author:
bird
Message:

Implemented (not tested) process priority manangement.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/emx/include/sys/resource.h

    • Property cvs2svn:cvs-rev changed from 1.2 to 1.3
    r1909 r1910  
    3737/** @file
    3838 * FreeBSD 5.1
     39 * @changed bird: get/setpriority takes id_t not int according to SuS.
    3940 */
    4041
     
    156157
    157158__BEGIN_DECLS
    158 int     getpriority(int, int);
     159int     getpriority(int, /*int*/ id_t);         /* bird: SuS uses id_t */
    159160int     getrlimit(int, struct rlimit *);
    160161int     getrusage(int, struct rusage *);
    161 int     setpriority(int, int, int);
     162int     setpriority(int, /*int*/ id_t, int);    /* bird: SuS uses id_t */
    162163int     setrlimit(int, const struct rlimit *);
    163164__END_DECLS
Note: See TracChangeset for help on using the changeset viewer.