Give some identifiers internal linkage
Give draw_map(), xdeval(), LwpSchedQ[], LwpDeadQ, LwpContextPtr, LwpMaxpri, LwpStackGrowsDown internal linkage.
This commit is contained in:
parent
0a49cd24a3
commit
aee8272d3d
6 changed files with 8 additions and 11 deletions
|
@ -39,12 +39,12 @@
|
|||
#include "lwpint.h"
|
||||
#include "prototypes.h"
|
||||
|
||||
struct lwpQueue LwpSchedQ[LWP_MAX_PRIO], LwpDeadQ;
|
||||
static struct lwpQueue LwpSchedQ[LWP_MAX_PRIO], LwpDeadQ;
|
||||
|
||||
struct lwpProc *LwpCurrent = NULL;
|
||||
void **LwpContextPtr;
|
||||
int LwpMaxpri = 0; /* maximum priority so far */
|
||||
int LwpStackGrowsDown;
|
||||
static void **LwpContextPtr;
|
||||
static int LwpMaxpri = 0; /* maximum priority so far */
|
||||
static int LwpStackGrowsDown;
|
||||
|
||||
static void lwpDestroy(struct lwpProc *proc);
|
||||
static void lwpStackCheckInit(struct lwpProc *newp);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue