return 0;
}
-# ifdef HAVE_SYS_ACL_H
-
-# include <sys/acl.h>
-
-#include "xlat/aclcmds.h"
-
-int
-sys_acl(struct tcb *tcp)
-{
- if (entering(tcp)) {
- printpath(tcp, tcp->u_arg[0]);
- tprints(", ");
- printxval(aclcmds, tcp->u_arg[1], "???ACL???");
- tprintf(", %ld", tcp->u_arg[2]);
- /*
- * FIXME - dump out the list of aclent_t's pointed to
- * by "tcp->u_arg[3]" if it's not NULL.
- */
- if (tcp->u_arg[3])
- tprintf(", %#lx", tcp->u_arg[3]);
- else
- tprints(", NULL");
- }
- return 0;
-}
-
-int
-sys_facl(struct tcb *tcp)
-{
- if (entering(tcp)) {
- tprintf("%ld, ", tcp->u_arg[0]);
- printxval(aclcmds, tcp->u_arg[1], "???ACL???");
- tprintf(", %ld", tcp->u_arg[2]);
- /*
- * FIXME - dump out the list of aclent_t's pointed to
- * by "tcp->u_arg[3]" if it's not NULL.
- */
- if (tcp->u_arg[3])
- tprintf(", %#lx", tcp->u_arg[3]);
- else
- tprints(", NULL");
- }
- return 0;
-}
-
-#include "xlat/aclipc.h"
-
-int
-sys_aclipc(struct tcb *tcp)
-{
- if (entering(tcp)) {
- printxval(aclipc, tcp->u_arg[0], "???IPC???");
- tprintf(", %#lx, ", tcp->u_arg[1]);
- printxval(aclcmds, tcp->u_arg[2], "???ACL???");
- tprintf(", %ld", tcp->u_arg[3]);
- /*
- * FIXME - dump out the list of aclent_t's pointed to
- * by "tcp->u_arg[4]" if it's not NULL.
- */
- if (tcp->u_arg[4])
- tprintf(", %#lx", tcp->u_arg[4]);
- else
- tprints(", NULL");
- }
- return 0;
-}
-
-# endif /* HAVE_SYS_ACL_H */
-
#endif /* SPARC[64] */
/* directory */