diff options
| author | rsc <devnull@localhost> | 2005-01-02 19:46:12 +0000 |
|---|---|---|
| committer | rsc <devnull@localhost> | 2005-01-02 19:46:12 +0000 |
| commit | 2600337aa704efbeba8201e88147a764b4fd2b90 (patch) | |
| tree | 48d526d00a515aabde861659380cf0f393e16401 /src/libfs/stat.c | |
| parent | acc021b8f8c727c0f04f33615354170fd7bccd0c (diff) | |
| download | plan9port-2600337aa704efbeba8201e88147a764b4fd2b90.tar.gz plan9port-2600337aa704efbeba8201e88147a764b4fd2b90.zip | |
remove libfs. now lib9pclient
Diffstat (limited to 'src/libfs/stat.c')
| -rw-r--r-- | src/libfs/stat.c | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/src/libfs/stat.c b/src/libfs/stat.c deleted file mode 100644 index e55e0b12..00000000 --- a/src/libfs/stat.c +++ /dev/null @@ -1,54 +0,0 @@ -/* Copyright (C) 2003 Russ Cox, Massachusetts Institute of Technology */ -/* See COPYRIGHT */ - -#include <u.h> -#include <libc.h> -#include <fcall.h> -#include <fs.h> -#include "fsimpl.h" - -Dir* -fsdirstat(Fsys *fs, char *name) -{ - Dir *d; - Fid *fid; - - if((fid = fswalk(fs->root, name)) == nil) - return nil; - - d = fsdirfstat(fid); - fsclose(fid); - return d; -} - -Dir* -fsdirfstat(Fid *fid) -{ - Dir *d; - Fsys *fs; - Fcall tx, rx; - void *freep; - int n; - - fs = fid->fs; - tx.type = Tstat; - tx.fid = fid->fid; - - if(fsrpc(fs, &tx, &rx, &freep) < 0) - return nil; - - d = malloc(sizeof(Dir)+rx.nstat); - if(d == nil){ - free(freep); - return nil; - } - n = convM2D(rx.stat, rx.nstat, d, (char*)&d[1]); - free(freep); - if(n != rx.nstat){ - free(d); - werrstr("rx.nstat and convM2D disagree about dir length"); - return nil; - } - return d; -} - |
