System Calls

Article by:
Date Published:
Last Modified:

Most standard C libraries depend on a number of subroutine calls for interacting with system services. These are called system calls.

Standard C System Calls

_exit()

Exits a program without cleaning up files.

close()

Closes a file

1
2
3
int close(int file) {
    return -1;
}

Authors

Geoffrey Hunter

Dude making stuff.

Creative Commons License
This work is licensed under a Creative Commons Attribution 4.0 International License .

Tags

    comments powered by Disqus