#include <oskit/fs/fs.h>void fs_wakeup(void *chan);
filesystem library client OS
This function awakens any threads waiting on this sleep channel.A sleep channel is simply an identifier for an event; typically, chan will be the address of some variable used by the filesystem library.
- chan
- The sleep channel.