diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2007-06-20 17:28:09 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2007-06-20 17:28:09 +0000 |
commit | 38ebd2a6c02c8332005ffbe1c36f0458e4de3cab (patch) | |
tree | 386336d14d2e85c419df547dd9edfeff2b094c17 /libgloss/spu/jsre.h | |
parent | 874e5ac68b3ddabc6205ebeab1586ec502330c14 (diff) | |
download | cygnal-38ebd2a6c02c8332005ffbe1c36f0458e4de3cab.tar.gz cygnal-38ebd2a6c02c8332005ffbe1c36f0458e4de3cab.tar.bz2 cygnal-38ebd2a6c02c8332005ffbe1c36f0458e4de3cab.zip |
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.
Diffstat (limited to 'libgloss/spu/jsre.h')
-rw-r--r-- | libgloss/spu/jsre.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libgloss/spu/jsre.h b/libgloss/spu/jsre.h index c7e26b2b8..707a2a2fe 100644 --- a/libgloss/spu/jsre.h +++ b/libgloss/spu/jsre.h @@ -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; |