Changeset 670 for trunk/kernel/syscalls/shared_include
- Timestamp:
- Nov 19, 2020, 11:45:52 PM (4 years ago)
- Location:
- trunk/kernel/syscalls/shared_include
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/syscalls/shared_include/shared_almos.h
r664 r670 56 56 DISPLAY_FAT = 11, 57 57 DISPLAY_SOCKET = 12, 58 DISPLAY_FD = 13, 59 DISPLAY_WINDOWS = 14, 58 60 } 59 61 display_type_t; -
trunk/kernel/syscalls/shared_include/shared_fbf.h
r657 r670 1 1 /* 2 * shared_fbf.h - Shared mnemonics used by the frame buffer related syscalls.2 * shared_fbf.h - Shared mnemonics used by the Frame Buffer related syscalls. 3 3 * 4 4 * Author Alain Greiner (2016,2017,2018,2019,2020) … … 35 35 FBF_DIRECT_WRITE = 2, 36 36 FBF_CREATE_WINDOW = 3, 37 FBF_DELETE_WINDOW = 4, 38 FBF_REFRESH_WINDOW = 5, 39 FBF_MOVE_WINDOW = 6, 40 FBF_RESIZE_WINDOW = 7, 37 FBF_ACTIVE_WINDOW = 4, 38 FBF_DELETE_WINDOW = 5, 39 FBF_REFRESH_WINDOW = 6, 40 FBF_FRONT_WINDOW = 7, 41 FBF_MOVE_WINDOW = 8, 42 FBF_RESIZE_WINDOW = 9, 41 43 } 42 44 fbf_usr_operation_type_t; -
trunk/kernel/syscalls/shared_include/shared_socket.h
r664 r670 69 69 SOCK_SEND = 5, 70 70 SOCK_RECV = 6, 71 SOCK_SENDTO = 7,72 SOCK_RECVFROM = 8,73 71 } 74 72 socket_operation_type_t; -
trunk/kernel/syscalls/shared_include/shared_stat.h
r611 r670 28 28 * This structure define the informations associated to a file descriptor, 29 29 * returned to user space by the stat() syscall. 30 * 31 * The st_mode field contains informations on both access rights and file types. 32 * - access rights (defined by the inode <rights> field) are stored in st_mode[15:0] 33 * - file types (defined by the inode <type> field) are stored in st_mode[19:16] 30 34 *****************************************************************************************/ 31 35 … … 45 49 46 50 /****************************************************************************************** 47 * The st_mode field contains informations on both access rights and file types.48 * - access rights (defined by the inode <rights> field) are stored in st_mode[15:0]49 * - file types (defined by the inode <type> field) are stored in st_mode[19:16]50 51 * The following macros can be used to extract file type information. 51 52 *
Note: See TracChangeset
for help on using the changeset viewer.