Subversion Repositories Kolibri OS

Rev

Rev 1220 | Rev 1298 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1220 Rev 1276
Line 3... Line 3...
3
;; Copyright (C) KolibriOS team 2004-2007. All rights reserved. ;;
3
;; Copyright (C) KolibriOS team 2004-2007. All rights reserved. ;;
4
;; Copyright (C) MenuetOS 2000-2004 Ville Mikael Turjanmaa      ;;
4
;; Copyright (C) MenuetOS 2000-2004 Ville Mikael Turjanmaa      ;;
5
;; Distributed under terms of the GNU General Public License    ;;
5
;; Distributed under terms of the GNU General Public License    ;;
6
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
6
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Line 7... Line 7...
7
 
7
 
Line 8... Line 8...
8
$Revision: 1220 $
8
$Revision: 1276 $
9
 
9
 
10
 
10
 
Line 224... Line 224...
224
  .exp_time  dd ?
224
  .exp_time  dd ?
225
  .func      dd ?
225
  .func      dd ?
226
  .arg       dd ?
226
  .arg       dd ?
227
}
227
}
Line -... Line 228...
-
 
228
 
228
 
229
 
229
MAX_PROIRITY         0   ; highest, used for kernel tasks
230
MAX_PROIRITY         0   ; highest, used for kernel tasks
230
MAX_USER_PRIORITY    0   ; highest priority for user processes
231
MAX_USER_PRIORITY    0   ; highest priority for user processes
231
USER_PRIORITY        7   ; default (should correspond to nice 0)
232
USER_PRIORITY        7   ; default (should correspond to nice 0)
232
MIN_USER_PRIORITY   14   ; minimum priority for user processes
233
MIN_USER_PRIORITY   14   ; minimum priority for user processes
233
IDLE_PRIORITY       15   ; lowest, only IDLE process goes here
234
IDLE_PRIORITY       15   ; lowest, only IDLE process goes here
Line -... Line 235...
-
 
235
NR_SCHED_QUEUES     16   ; MUST equal IDLE_PRIORYTY + 1
234
NR_SCHED_QUEUES     16   ; MUST equal IDLE_PRIORYTY + 1
236
 
-
 
237
uglobal
Line 235... Line 238...
235
 
238
rdy_head   rd 16
236
rdy_head   rd 16
239
endg
Line 237... Line 240...
237
 
240