blob: 4a2fae17832d6f70d1b21982a0f852124cdc9a12 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
# Common for the environment list package.
pointer envbuf # buffer containing the environment list
int len_envbuf # length of the envbuf buffer
int last # index of the last list element entered
int top # index of the next list element
short threads[NTHREADS] # hashed threads through list
common /envcom/ envbuf, len_envbuf, last, top, threads
|