summaryrefslogtreecommitdiffstats
path: root/sys/compat/svr4
diff options
context:
space:
mode:
authordelphij <delphij@FreeBSD.org>2009-05-29 05:58:46 +0000
committerdelphij <delphij@FreeBSD.org>2009-05-29 05:58:46 +0000
commit5abf6d12a5b292a484cb920b8911bf79a43bd9b7 (patch)
tree72fd47c1ded93b42fd6a9436d7f6c4f9e1a63c8f /sys/compat/svr4
parent88adf607eaaf6d2a6e84ae648dfa44a62069cfab (diff)
downloadFreeBSD-src-5abf6d12a5b292a484cb920b8911bf79a43bd9b7.zip
FreeBSD-src-5abf6d12a5b292a484cb920b8911bf79a43bd9b7.tar.gz
de-register.
Submitted by: "Pedro f. Giffuni" <giffunip asme org> Obtained from: NetBSD PR: kern/91293
Diffstat (limited to 'sys/compat/svr4')
-rw-r--r--sys/compat/svr4/svr4_fcntl.c22
-rw-r--r--sys/compat/svr4/svr4_ioctl.c2
-rw-r--r--sys/compat/svr4/svr4_misc.c6
-rw-r--r--sys/compat/svr4/svr4_resource.c8
-rw-r--r--sys/compat/svr4/svr4_signal.c14
-rw-r--r--sys/compat/svr4/svr4_stat.c30
-rw-r--r--sys/compat/svr4/svr4_stream.c4
7 files changed, 43 insertions, 43 deletions
diff --git a/sys/compat/svr4/svr4_fcntl.c b/sys/compat/svr4/svr4_fcntl.c
index 87f6381..a4cdfcf 100644
--- a/sys/compat/svr4/svr4_fcntl.c
+++ b/sys/compat/svr4/svr4_fcntl.c
@@ -367,7 +367,7 @@ fd_truncate(td, fd, flp)
int
svr4_sys_open(td, uap)
- register struct thread *td;
+ struct thread *td;
struct svr4_sys_open_args *uap;
{
struct proc *p = td->td_proc;
@@ -419,7 +419,7 @@ svr4_sys_open(td, uap)
int
svr4_sys_open64(td, uap)
- register struct thread *td;
+ struct thread *td;
struct svr4_sys_open64_args *uap;
{
return svr4_sys_open(td, (struct svr4_sys_open_args *)uap);
@@ -427,7 +427,7 @@ svr4_sys_open64(td, uap)
int
svr4_sys_creat(td, uap)
- register struct thread *td;
+ struct thread *td;
struct svr4_sys_creat_args *uap;
{
char *newpath;
@@ -443,7 +443,7 @@ svr4_sys_creat(td, uap)
int
svr4_sys_creat64(td, uap)
- register struct thread *td;
+ struct thread *td;
struct svr4_sys_creat64_args *uap;
{
return svr4_sys_creat(td, (struct svr4_sys_creat_args *)uap);
@@ -451,7 +451,7 @@ svr4_sys_creat64(td, uap)
int
svr4_sys_llseek(td, uap)
- register struct thread *td;
+ struct thread *td;
struct svr4_sys_llseek_args *uap;
{
struct lseek_args ap;
@@ -472,7 +472,7 @@ svr4_sys_llseek(td, uap)
int
svr4_sys_access(td, uap)
- register struct thread *td;
+ struct thread *td;
struct svr4_sys_access_args *uap;
{
char *newpath;
@@ -487,7 +487,7 @@ svr4_sys_access(td, uap)
#if defined(NOTYET)
int
svr4_sys_pread(td, uap)
- register struct thread *td;
+ struct thread *td;
struct svr4_sys_pread_args *uap;
{
struct pread_args pra;
@@ -508,7 +508,7 @@ svr4_sys_pread(td, uap)
#if defined(NOTYET)
int
svr4_sys_pread64(td, v, retval)
- register struct thread *td;
+ struct thread *td;
void *v;
register_t *retval;
{
@@ -532,7 +532,7 @@ svr4_sys_pread64(td, v, retval)
#if defined(NOTYET)
int
svr4_sys_pwrite(td, uap)
- register struct thread *td;
+ struct thread *td;
struct svr4_sys_pwrite_args *uap;
{
struct pwrite_args pwa;
@@ -553,7 +553,7 @@ svr4_sys_pwrite(td, uap)
#if defined(NOTYET)
int
svr4_sys_pwrite64(td, v, retval)
- register struct thread *td;
+ struct thread *td;
void *v;
register_t *retval;
{
@@ -575,7 +575,7 @@ svr4_sys_pwrite64(td, v, retval)
int
svr4_sys_fcntl(td, uap)
- register struct thread *td;
+ struct thread *td;
struct svr4_sys_fcntl_args *uap;
{
int cmd, error, *retval;
diff --git a/sys/compat/svr4/svr4_ioctl.c b/sys/compat/svr4/svr4_ioctl.c
index 4e91c4b..1cea41a 100644
--- a/sys/compat/svr4/svr4_ioctl.c
+++ b/sys/compat/svr4/svr4_ioctl.c
@@ -79,7 +79,7 @@ svr4_decode_cmd(cmd, dir, c, num, argsiz)
int
svr4_sys_ioctl(td, uap)
- register struct thread *td;
+ struct thread *td;
struct svr4_sys_ioctl_args *uap;
{
int *retval;
diff --git a/sys/compat/svr4/svr4_misc.c b/sys/compat/svr4/svr4_misc.c
index d352385..f994314 100644
--- a/sys/compat/svr4/svr4_misc.c
+++ b/sys/compat/svr4/svr4_misc.c
@@ -121,7 +121,7 @@ static struct proc *svr4_pfind(pid_t pid);
#if defined(BOGUS)
int
svr4_sys_setitimer(td, uap)
- register struct thread *td;
+ struct thread *td;
struct svr4_sys_setitimer_args *uap;
{
td->td_retval[0] = 0;
@@ -231,7 +231,7 @@ svr4_sys_getdents64(td, uap)
struct thread *td;
struct svr4_sys_getdents64_args *uap;
{
- register struct dirent *bdp;
+ struct dirent *bdp;
struct vnode *vp;
caddr_t inp, buf; /* BSD-format */
int len, reclen; /* BSD-format */
@@ -668,7 +668,7 @@ svr4_mknod(td, retval, path, mode, dev)
int
svr4_sys_mknod(td, uap)
- register struct thread *td;
+ struct thread *td;
struct svr4_sys_mknod_args *uap;
{
int *retval = td->td_retval;
diff --git a/sys/compat/svr4/svr4_resource.c b/sys/compat/svr4/svr4_resource.c
index 7b57c3f..7dd692a 100644
--- a/sys/compat/svr4/svr4_resource.c
+++ b/sys/compat/svr4/svr4_resource.c
@@ -127,7 +127,7 @@ svr4_to_native_rl(rl)
int
svr4_sys_getrlimit(td, uap)
- register struct thread *td;
+ struct thread *td;
struct svr4_sys_getrlimit_args *uap;
{
int rl = svr4_to_native_rl(uap->which);
@@ -174,7 +174,7 @@ svr4_sys_getrlimit(td, uap)
int
svr4_sys_setrlimit(td, uap)
- register struct thread *td;
+ struct thread *td;
struct svr4_sys_setrlimit_args *uap;
{
int rl = svr4_to_native_rl(uap->which);
@@ -225,7 +225,7 @@ svr4_sys_setrlimit(td, uap)
int
svr4_sys_getrlimit64(td, uap)
- register struct thread *td;
+ struct thread *td;
struct svr4_sys_getrlimit64_args *uap;
{
int rl = svr4_to_native_rl(uap->which);
@@ -272,7 +272,7 @@ svr4_sys_getrlimit64(td, uap)
int
svr4_sys_setrlimit64(td, uap)
- register struct thread *td;
+ struct thread *td;
struct svr4_sys_setrlimit64_args *uap;
{
int rl = svr4_to_native_rl(uap->which);
diff --git a/sys/compat/svr4/svr4_signal.c b/sys/compat/svr4/svr4_signal.c
index c0a3a21..0034abd 100644
--- a/sys/compat/svr4/svr4_signal.c
+++ b/sys/compat/svr4/svr4_signal.c
@@ -259,7 +259,7 @@ bsd_to_svr4_sigaltstack(bss, sss)
int
svr4_sys_sigaction(td, uap)
- register struct thread *td;
+ struct thread *td;
struct svr4_sys_sigaction_args *uap;
{
struct svr4_sigaction isa;
@@ -301,7 +301,7 @@ svr4_sys_sigaction(td, uap)
int
svr4_sys_sigaltstack(td, uap)
- register struct thread *td;
+ struct thread *td;
struct svr4_sys_sigaltstack_args *uap;
{
struct svr4_sigaltstack sss;
@@ -328,7 +328,7 @@ svr4_sys_sigaltstack(td, uap)
*/
int
svr4_sys_signal(td, uap)
- register struct thread *td;
+ struct thread *td;
struct svr4_sys_signal_args *uap;
{
struct proc *p;
@@ -493,7 +493,7 @@ svr4_sys_sigpending(td, uap)
int
svr4_sys_sigsuspend(td, uap)
- register struct thread *td;
+ struct thread *td;
struct svr4_sys_sigsuspend_args *uap;
{
svr4_sigset_t sss;
@@ -510,7 +510,7 @@ svr4_sys_sigsuspend(td, uap)
int
svr4_sys_kill(td, uap)
- register struct thread *td;
+ struct thread *td;
struct svr4_sys_kill_args *uap;
{
struct kill_args ka;
@@ -525,7 +525,7 @@ svr4_sys_kill(td, uap)
int
svr4_sys_context(td, uap)
- register struct thread *td;
+ struct thread *td;
struct svr4_sys_context_args *uap;
{
struct svr4_ucontext uc;
@@ -565,7 +565,7 @@ svr4_sys_context(td, uap)
int
svr4_sys_pause(td, uap)
- register struct thread *td;
+ struct thread *td;
struct svr4_sys_pause_args *uap;
{
sigset_t mask;
diff --git a/sys/compat/svr4/svr4_stat.c b/sys/compat/svr4/svr4_stat.c
index 6ddac44..e7401a87 100644
--- a/sys/compat/svr4/svr4_stat.c
+++ b/sys/compat/svr4/svr4_stat.c
@@ -185,7 +185,7 @@ svr4_sys_stat(td, uap)
int
svr4_sys_lstat(td, uap)
- register struct thread *td;
+ struct thread *td;
struct svr4_sys_lstat_args *uap;
{
struct svr4_stat svr4_st;
@@ -210,7 +210,7 @@ svr4_sys_lstat(td, uap)
int
svr4_sys_fstat(td, uap)
- register struct thread *td;
+ struct thread *td;
struct svr4_sys_fstat_args *uap;
{
struct svr4_stat svr4_st;
@@ -228,7 +228,7 @@ svr4_sys_fstat(td, uap)
int
svr4_sys_xstat(td, uap)
- register struct thread *td;
+ struct thread *td;
struct svr4_sys_xstat_args *uap;
{
struct svr4_xstat svr4_st;
@@ -255,7 +255,7 @@ svr4_sys_xstat(td, uap)
int
svr4_sys_lxstat(td, uap)
- register struct thread *td;
+ struct thread *td;
struct svr4_sys_lxstat_args *uap;
{
struct svr4_xstat svr4_st;
@@ -282,7 +282,7 @@ svr4_sys_lxstat(td, uap)
int
svr4_sys_fxstat(td, uap)
- register struct thread *td;
+ struct thread *td;
struct svr4_sys_fxstat_args *uap;
{
struct svr4_xstat svr4_st;
@@ -299,7 +299,7 @@ svr4_sys_fxstat(td, uap)
int
svr4_sys_stat64(td, uap)
- register struct thread *td;
+ struct thread *td;
struct svr4_sys_stat64_args *uap;
{
struct svr4_stat64 svr4_st;
@@ -325,7 +325,7 @@ svr4_sys_stat64(td, uap)
int
svr4_sys_lstat64(td, uap)
- register struct thread *td;
+ struct thread *td;
struct svr4_sys_lstat64_args *uap;
{
struct svr4_stat64 svr4_st;
@@ -351,7 +351,7 @@ svr4_sys_lstat64(td, uap)
int
svr4_sys_fstat64(td, uap)
- register struct thread *td;
+ struct thread *td;
struct svr4_sys_fstat64_args *uap;
{
struct svr4_stat64 svr4_st;
@@ -368,7 +368,7 @@ svr4_sys_fstat64(td, uap)
int
svr4_ustat(td, uap)
- register struct thread *td;
+ struct thread *td;
struct svr4_ustat_args *uap;
{
struct svr4_ustat us;
@@ -390,7 +390,7 @@ svr4_ustat(td, uap)
int
svr4_sys_uname(td, uap)
- register struct thread *td;
+ struct thread *td;
struct svr4_sys_uname_args *uap;
{
struct svr4_utsname sut;
@@ -517,7 +517,7 @@ svr4_sys_systeminfo(td, uap)
int
svr4_sys_utssys(td, uap)
- register struct thread *td;
+ struct thread *td;
struct svr4_sys_utssys_args *uap;
{
switch (uap->sel) {
@@ -548,7 +548,7 @@ svr4_sys_utssys(td, uap)
int
svr4_sys_utime(td, uap)
- register struct thread *td;
+ struct thread *td;
struct svr4_sys_utime_args *uap;
{
struct svr4_utimbuf ub;
@@ -577,7 +577,7 @@ svr4_sys_utime(td, uap)
int
svr4_sys_utimes(td, uap)
- register struct thread *td;
+ struct thread *td;
struct svr4_sys_utimes_args *uap;
{
char *path;
@@ -640,7 +640,7 @@ svr4_to_bsd_pathconf(name)
int
svr4_sys_pathconf(td, uap)
- register struct thread *td;
+ struct thread *td;
struct svr4_sys_pathconf_args *uap;
{
char *path;
@@ -666,7 +666,7 @@ svr4_sys_pathconf(td, uap)
int
svr4_sys_fpathconf(td, uap)
- register struct thread *td;
+ struct thread *td;
struct svr4_sys_fpathconf_args *uap;
{
register_t *retval = td->td_retval;
diff --git a/sys/compat/svr4/svr4_stream.c b/sys/compat/svr4/svr4_stream.c
index 68abf58..ec95eec 100644
--- a/sys/compat/svr4/svr4_stream.c
+++ b/sys/compat/svr4/svr4_stream.c
@@ -1442,7 +1442,7 @@ svr4_stream_ioctl(fp, td, retval, fd, cmd, dat)
int
svr4_sys_putmsg(td, uap)
- register struct thread *td;
+ struct thread *td;
struct svr4_sys_putmsg_args *uap;
{
struct file *fp;
@@ -1633,7 +1633,7 @@ svr4_sys_getmsg(td, uap)
int
svr4_do_getmsg(td, uap, fp)
- register struct thread *td;
+ struct thread *td;
struct svr4_sys_getmsg_args *uap;
struct file *fp;
{
OpenPOWER on IntegriCloud