retire BIOS_SEG and umap_bios
[minix3.git] / lib / libvtreefs / utility.c
blobd4b0e86e672fc2e7a0045976fde300a8e23cc45d
1 /* VTreeFS - utility.c - by Alen Stojanov and David van Moolenbroek */
3 #include "inc.h"
5 /*===========================================================================*
6 * no_sys *
7 *===========================================================================*/
8 int no_sys(void)
10 /* This call is not recognized by VTreeFS. If a message hook is
11 * defined, let it handle the call; otherwise return ENOSYS.
14 if (vtreefs_hooks->message_hook != NULL)
15 return vtreefs_hooks->message_hook(&fs_m_in);
17 return ENOSYS;
20 /*===========================================================================*
21 * do_noop *
22 *===========================================================================*/
23 int do_noop(void)
25 /* This call has no effect.
28 return OK;