summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cpukit/ChangeLog5
-rw-r--r--cpukit/libnetworking/sys/ucred.h7
2 files changed, 5 insertions, 7 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 95ad68837b..a824629c6c 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,5 +1,10 @@
2007-03-18 Ralf Corsépius <ralf.corsepius@rtems.org>
+ * libnetworking/sys/ucred.h: Remove crcopy, crdup, crfree, crget,
+ crhold (Unused/non-implemented).
+
+2007-03-18 Ralf Corsépius <ralf.corsepius@rtems.org>
+
* libnetworking/sys/ucred.h: Remove __P().
* libnetworking/sys/callout.h: Remove __P().
* libnetworking/sys/domain.h: Remove __P().
diff --git a/cpukit/libnetworking/sys/ucred.h b/cpukit/libnetworking/sys/ucred.h
index aae5086f06..e26bacd15a 100644
--- a/cpukit/libnetworking/sys/ucred.h
+++ b/cpukit/libnetworking/sys/ucred.h
@@ -51,14 +51,7 @@ struct ucred {
#define FSCRED ((struct ucred *)-1) /* filesystem credential */
#ifdef _KERNEL
-#define crhold(cr) (cr)->cr_ref++
-
-struct ucred *crcopy(struct ucred *cr);
-struct ucred *crdup(struct ucred *cr);
-void crfree(struct ucred *cr);
-struct ucred *crget(void);
int suser(struct ucred *cred, u_short *acflag);
-int groupmember(gid_t gid, struct ucred *cred);
#endif /* _KERNEL */
#endif /* !_SYS_UCRED_H_ */