Add tag to io_op enum, for debugging convenience

This commit is contained in:
Martin Fouilleul 2023-06-23 17:24:18 +02:00
parent 18c793dbb4
commit 28e0a6c88e
1 changed files with 2 additions and 2 deletions

View File

@ -45,9 +45,9 @@ typedef enum { FILE_SEEK_SET, FILE_SEEK_END, FILE_SEEK_CURRENT } file_whence;
typedef u64 io_req_id;
typedef u32 io_op;
enum
enum _io_op
{
IO_OP_OPEN_AT,
IO_OP_OPEN_AT = 0,
IO_OP_CLOSE,
IO_OP_FSTAT,