Age | Commit message (Collapse) | Author |
|
Now it can send UDP messages to a specific IP address and libc has
enough to create a basic UDP ECHO server, that is kinda cool.
|
|
|
|
This allows a UDP server to be created in userland and read data.
Currently it can't send data and is very very simplistic.
Code is horrible and probably needs some fixing until it can be further built
upon.
|
|
implementation
Previously this function was only used for shared memory region created
by shm_open because I was lazy. Now exists for all files.
|
|
fclose
|
|
|
|
This helps a ton when using functions such as fscanf that reads from a
FILE byte by byte. By creating a cache it avoids a ton of 'read'
syscalls that would otherwise be made.
|
|
|