aboutsummaryrefslogtreecommitdiff
path: root/src/lib9/dirfstat.c
diff options
context:
space:
mode:
authorrsc <devnull@localhost>2003-11-23 18:12:54 +0000
committerrsc <devnull@localhost>2003-11-23 18:12:54 +0000
commitfd04aacee17b348da206c13a550dc1029669805f (patch)
tree9bdd35a25ff6e3d6e9a0171b06240a76723f922c /src/lib9/dirfstat.c
parent74f990ad84deb1591ddb91be4fc8152ec0c46222 (diff)
downloadplan9port-fd04aacee17b348da206c13a550dc1029669805f.tar.gz
plan9port-fd04aacee17b348da206c13a550dc1029669805f.tar.bz2
plan9port-fd04aacee17b348da206c13a550dc1029669805f.zip
Various additions and fixes.
Diffstat (limited to 'src/lib9/dirfstat.c')
-rw-r--r--src/lib9/dirfstat.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/lib9/dirfstat.c b/src/lib9/dirfstat.c
new file mode 100644
index 00000000..e617bc2f
--- /dev/null
+++ b/src/lib9/dirfstat.c
@@ -0,0 +1,29 @@
+#include <u.h>
+#define NOPLAN9DEFINES
+#include <libc.h>
+
+#include <sys/stat.h>
+
+extern int _p9dir(struct stat*, char*, Dir*, char**, char*);
+
+Dir*
+dirfstat(int fd)
+{
+ struct stat st;
+ int nstr;
+ Dir *d;
+ char *str, tmp[100];
+
+ if(fstat(fd, &st) < 0)
+ return nil;
+
+ snprint(tmp, sizeof tmp, "/dev/fd/%d", fd);
+ nstr = _p9dir(&st, tmp, nil, nil, nil);
+ d = mallocz(sizeof(Dir)+nstr, 1);
+ if(d == nil)
+ return nil;
+ str = (char*)&d[1];
+ _p9dir(&st, tmp, d, &str, str+nstr);
+ return d;
+}
+