Skip to content

Commit

Permalink
vrt: Update core.c.posix for macOS aarch64
Browse files Browse the repository at this point in the history
  • Loading branch information
bhelyer authored and Wallbraker committed Jul 20, 2024
1 parent c67bdee commit 3171e61
Show file tree
Hide file tree
Showing 3 changed files with 99 additions and 39 deletions.
26 changes: 19 additions & 7 deletions rt/src/core/c/posix/dirent.volt
Original file line number Diff line number Diff line change
Expand Up @@ -95,13 +95,25 @@ version (Linux) {
DT_WHT = 14
}

align(4) struct dirent
{
d_ino: ino_t;
d_reclen: u16;
d_type: u8;
d_namelen: u8;
d_name: char[256];
version (AArch64) {
struct dirent
{
d_ino: ino_t;
d_seekoff: u64;
d_reclen: u16;
d_namlen: u16;
d_type: u8;
d_name: char[1024];
}
} else {
align(4) struct dirent
{
d_ino: ino_t;
d_reclen: u16;
d_type: u8;
d_namelen: u8;
d_name: char[256];
}
}

struct DIR
Expand Down
105 changes: 74 additions & 31 deletions rt/src/core/c/posix/sys/stat.volt
Original file line number Diff line number Diff line change
Expand Up @@ -266,37 +266,80 @@ version (Linux) {

} else version (OSX) {

struct stat_t
{
st_dev: dev_t;
st_ino: ino_t;
st_mode: mode_t;
st_nlink: nlink_t;
st_uid: uid_t;
st_gid: gid_t;
st_rdev: dev_t;
//static if( false /*!_POSIX_C_SOURCE || _DARWIN_C_SOURCE*/ )
//{
//timespec st_atimespec;
//timespec st_mtimespec;
//timespec st_ctimespec;
//}
//else
//{
st_atime: time_t;
st_atimensec: c_long;
st_mtime: time_t;
st_mtimensec: c_long;
st_ctime: time_t;
st_ctimensec: c_long;
//}
st_size: off_t;
st_blocks: blkcnt_t;
st_blksize: blksize_t;
st_flags: u32;
st_gen: u32;
st_lspare: i32;
st_qspare: i64[2];

version (AArch64) {

struct stat_t
{
st_dev: dev_t;
st_mode: mode_t;
st_nlink: nlink_t;
st_ino: ino_t;
st_uid: uid_t;
st_gid: gid_t;
st_rdev: dev_t;
//static if( false /*!_POSIX_C_SOURCE || _DARWIN_C_SOURCE*/ )
//{
//timespec st_atimespec;
//timespec st_mtimespec;
//timespec st_ctimespec;
//timespec st_birthtimespec;
//}
//else
//{
st_atime: time_t;
st_atimensec: c_long;
st_mtime: time_t;
st_mtimensec: c_long;
st_ctime: time_t;
st_ctimensec: c_long;
st_birthtime: time_t;
st_birthtimensec: c_long;
//}
st_size: off_t;
st_blocks: blkcnt_t;
st_blksize: blksize_t;
st_flags: u32;
st_gen: u32;
st_lspare: i32;
st_qspare: i64[2];
}

} else {

struct stat_t
{
st_dev: dev_t;
st_ino: ino_t;
st_mode: mode_t;
st_nlink: nlink_t;
st_uid: uid_t;
st_gid: gid_t;
st_rdev: dev_t;
//static if( false /*!_POSIX_C_SOURCE || _DARWIN_C_SOURCE*/ )
//{
//timespec st_atimespec;
//timespec st_mtimespec;
//timespec st_ctimespec;
//}
//else
//{
st_atime: time_t;
st_atimensec: c_long;
st_mtime: time_t;
st_mtimensec: c_long;
st_ctime: time_t;
st_ctimensec: c_long;
//}
st_size: off_t;
st_blocks: blkcnt_t;
st_blksize: blksize_t;
st_flags: u32;
st_gen: u32;
st_lspare: i32;
st_qspare: i64[2];
}

}

enum S_IRUSR = 0x100; // octal 0400
Expand Down
7 changes: 6 additions & 1 deletion rt/src/core/c/posix/sys/types.volt
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ version (Linux) {
alias blksize_t = i32;
alias dev_t = i32;
alias gid_t = u32;
alias ino_t = u32;
alias mode_t = u16;
alias nlink_t = u16;
alias off_t = i64;
Expand All @@ -87,6 +86,12 @@ version (Linux) {
//time_t (defined in core.stdc.time)
alias ssize_t = c_long;
alias uid_t = u32;

version (AArch64) {
alias ino_t = u64;
} else {
alias ino_t = u32;
}
}

//
Expand Down

0 comments on commit 3171e61

Please sign in to comment.