コード例 #1
0
static int fcntl_getfl (void)
{
   int fd;

   if (-1 == pop_fd (&fd))
     return -1;

   return do_fcntl_2 (fd, F_GETFL);
}
コード例 #2
0
ファイル: fcntl-module.c プロジェクト: GalaxyTab4/workbench
static int fcntl_getfl (SLFile_FD_Type *f)
{   
   return do_fcntl_2 (f, F_GETFL);
}