Ignore:
Timestamp:
Mar 6, 2019, 4:37:15 PM (5 years ago)
Author:
alain
Message:

Introduce three new types of vsegs (KCODE,KDATA,KDEV)
to map the kernel vsegs in the process VSL and GPT.
This now used by both the TSAR and the I86 architectures.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/libs/mini-libc/stdio.h

    r610 r623  
    4040 ********************************************************************************************/
    4141
    42 typedef struct file_s
     42typedef struct stream_s
    4343{
    44     int fd;
    45     int key;
     44    int fd;          // index in both kernel fd_array[], and user open_file_array[]
     45    int key;         // entry valid in open_file_array[] when (key == VALID_OPEN_FILE)
    4646}
    4747FILE;
Note: See TracChangeset for help on using the changeset viewer.