Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: jasonwhite/syscalls
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.7.0
Choose a base ref
...
head repository: jasonwhite/syscalls
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0.8.1
Choose a head ref
  • 5 commits
  • 20 files changed
  • 1 contributor

Commits on Sep 27, 2025

  1. Update README.md

    jasonwhite authored Sep 27, 2025
    Configuration menu
    Copy the full SHA
    dbfc15c View commit details
    Browse the repository at this point in the history

Commits on Feb 2, 2026

  1. Fix riscv32/riscv64 syscall lists

    These are now generated from syscall.tbl, which is the most accurate.
    
    Fixes missing riscv_hwprobe, riscv_flush_icache.
    
    On riscv32:
     - Removes `io_getevents`
     - Renames `fcntl` -> `fcntl64`
     - Removes `renameat` (use `renameat2`)
     - Renames `statfs` -> `statfs64`
     - Renames `fstatfs` -> `fstatfs64`
     - Renames `truncate` -> `truncate64`
     - Renames `ftruncate` -> `ftruncate64`
     - Renames `lseek` -> `llseek`
     - Renames `sendfile` -> `sendfile64`
     - Removes `pselect6` (use `pselect6_time64`)
     - Removes `fstatat64`
     - Removes `fstat`
     - Removes `timer_{set,get}time}` (use `timer_{set,get}64`)
     - Removes `timerfd_{set,get}time}` (use `timerfd_{set,get}64`)
     - Removes `clock_{set,get}time}` (use `clock_{set,get}64`)
     - Removes `utimensat` (use `utimensat_time64`)
     - Removes `futex` (use `futex_time64`)
     - Removes `nanosleep` (use `clock_nanosleep_time64`)
     - Removes `sched_rr_get_interval` (use `sched_rr_get_interval_time64`)
     - Removes `rt_sigtimedwait` (use `rt_sigtimedwait_time64`)
     - Removes `{get,set}timeofday`
     - Removes `mq_timedsend` (use `mq_timedsend_time64`)
     - Removes `mq_timedreceive` (use `mq_timedreceive_time64`)
     - Removes `semtimedop` (use `semtimedop_time64`)
     - Renames `mmap` -> `mmap2`
     - Renames `fadvise64` -> `fadvise64_64`
     - Removes `rescvmmsg` (use `recevmmsg_time64`)
     - Removes `wait4`
     - Removes `clock_adjtime` (use `clock_adjtime64`)
     - Removes `io_pgetevents` (use `io_pgetevents_time64`)
    
    On riscv64:
     - Removes the time64 syscalls, which are 32-bit only.
     - Removes `renameat` (use `renameat2`).
     - Removes `fstatat` (use `newfstatat`).
    jasonwhite committed Feb 2, 2026
    Configuration menu
    Copy the full SHA
    73b6ffb View commit details
    Browse the repository at this point in the history
  2. v0.8.0

    jasonwhite committed Feb 2, 2026
    Configuration menu
    Copy the full SHA
    fb554a2 View commit details
    Browse the repository at this point in the history
  3. Update to Linux v6.18

    Includes:
     - all: `file_{get,set}attr`
     - x86-64: `uprobe`
    jasonwhite committed Feb 2, 2026
    Configuration menu
    Copy the full SHA
    c095aae View commit details
    Browse the repository at this point in the history
  4. v0.8.1

    jasonwhite committed Feb 2, 2026
    Configuration menu
    Copy the full SHA
    692bcf0 View commit details
    Browse the repository at this point in the history
Loading