Files
seta75D 2e8a93c394 Init
2021-10-11 18:20:23 -03:00

14 lines
434 B
C

/* @(#)schedule.h 1.1 92/07/30 Copyr 1987 Sun Micro */
/* Copyright (C) 1987. Sun Microsystems, Inc. */
#ifndef _lwp_schedule_h
#define _lwp_schedule_h
extern struct lwp_t *__Curproc; /* Currently running lwp */
extern struct lwp_t Nullproc; /* null proc*/
extern qheader_t *__RunQ; /* Queues (1/prio) of runnable lwps */
extern int __MaxPrio; /* Size of RunQ (0..MaxPrio) */
extern void __schedule();
#endif /*!_lwp_schedule_h*/