2007-06-20 Patrick Mansfield <patmans@us.ibm.com>

* spu/jsre.h: Add defines for new assist calls.
        * spu/chdir.c: New file, support chdir via assist call.
        * spu/chmod.c: New file, support chmod via assist call.
        * spu/chown.c: New file, support chown via assist call.
        * spu/fchdir.c: New file, support fchdir via assist call.
        * spu/fchmod.c: New file, support fchmod via assist call.
        * spu/fchown.c: New file, support fchown via assist call.
        * spu/lchown.c: New file, support lchown via assist call.
        * spu/mkdir.c: New file, support mkdir via assist call.
        * spu/mknod.c: New file, support mknod via assist call.
        * spu/rmdir.c: New file, support rmdir via assist call.
        * spu/Makefile.in: Add new files.
This commit is contained in:
Jeff Johnston
2007-06-20 17:28:09 +00:00
parent 874e5ac68b
commit 38ebd2a6c0
13 changed files with 538 additions and 3 deletions

View File

@@ -52,6 +52,17 @@ Author: Andreas Neukoetter (ti95neuk@de.ibm.com)
#define JSRE_DUP 30
#define JSRE_NANOSLEEP 32
#define JSRE_CHDIR 33
#define JSRE_FCHDIR 34
#define JSRE_MKDIR 35
#define JSRE_MKNOD 36
#define JSRE_RMDIR 37
#define JSRE_CHMOD 38
#define JSRE_FCHMOD 39
#define JSRE_CHOWN 40
#define JSRE_FCHOWN 41
#define JSRE_LCHOWN 42
typedef struct {
unsigned int dev;
unsigned int ino;