Module syscall.table

A table mapping system call names to their kernel addresses.

This module provides a pre-populated Lua table where each key is a system call name (string, e.g., "openat") and its corresponding value is the kernel address of that system call (lightuserdata).

See also:

Usage:

    local syscall_addrs = require("syscall.table")
    
    if syscall_addrs.openat then
      print("Address of 'openat':", syscall_addrs.openat)
    end
    
    if syscall_addrs.close then
      print("Address of 'close':", syscall_addrs.close)
    end
    


generated by LDoc 1.5.0 Last updated 2025-06-27 17:53:55