Skip to content

Commit

Permalink
servers: fix exec message structure
Browse files Browse the repository at this point in the history
  • Loading branch information
jewelcodes committed Oct 1, 2024
1 parent 42e7bcc commit e9a9681
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/include/kernel/servers.h
Original file line number Diff line number Diff line change
Expand Up @@ -192,9 +192,9 @@ typedef struct {
/* exec() */
typedef struct {
SyscallHeader header;
char path[MAX_FILE_PATH];
uid_t uid;
gid_t gid;
char path[MAX_FILE_PATH];

uint8_t elf[]; // ELF file
} ExecCommand;
Expand Down

0 comments on commit e9a9681

Please sign in to comment.