lib9pclient is the new libfs
This commit is contained in:
parent
5ba841dffa
commit
46f79934b7
16 changed files with 1033 additions and 0 deletions
26
src/lib9pclient/openfd.c
Normal file
26
src/lib9pclient/openfd.c
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
#include <u.h>
|
||||
#include <libc.h>
|
||||
#include <fcall.h>
|
||||
#include <9pclient.h>
|
||||
#include "fsimpl.h"
|
||||
|
||||
int
|
||||
fsopenfd(CFsys *fs, char *name, int mode)
|
||||
{
|
||||
CFid *fid;
|
||||
Fcall tx, rx;
|
||||
|
||||
if((fid = _fswalk(fs->root, name)) == nil)
|
||||
return -1;
|
||||
tx.type = Topenfd;
|
||||
tx.fid = fid->fid;
|
||||
tx.mode = mode&~OCEXEC;
|
||||
if(_fsrpc(fs, &tx, &rx, 0) < 0){
|
||||
fsclose(fid);
|
||||
return -1;
|
||||
}
|
||||
_fsputfid(fid);
|
||||
if(mode&OCEXEC && rx.unixfd>=0)
|
||||
fcntl(rx.unixfd, F_SETFL, FD_CLOEXEC);
|
||||
return rx.unixfd;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue