https://github.com/gechandesu/syscall
System calls
https://github.com/gechandesu/syscall
syscalls vlang vlang-module vlang-package
Last synced: 15 days ago
JSON representation
System calls
- Host: GitHub
- URL: https://github.com/gechandesu/syscall
- Owner: gechandesu
- License: mit
- Created: 2026-05-31T18:35:07.000Z (about 1 month ago)
- Default Branch: master
- Last Pushed: 2026-05-31T18:46:27.000Z (about 1 month ago)
- Last Synced: 2026-05-31T20:21:14.576Z (about 1 month ago)
- Topics: syscalls, vlang, vlang-module, vlang-package
- Language: V
- Homepage: https://gechandesu.github.io/syscall/
- Size: 17.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# System Calls
The system call is the fundamental interface between an application and the
operating system kernel.
`syscall` module provides wrappers for system calls. Use `C.syscall()` if you
want to invoke system calls that has no wrappers.
## Status and Purpose
This project is currently a Work in Progress (WIP). Breaking changes may occur
prior to reaching version 1.0.0.
The objective of this module is to provide C wrappers that are currently
missing from V's standard `os` library. However, this does not preclude the
inclusion of wrappers for system calls that are *already* present in the
standard library. Consequently, the `syscall` module does not aim to provide
comprehensive coverage of all system calls; rather, the number of wrappers
will be expanded on an as-needed basis.
Microsoft Windows support is not planned.