Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 56 for Acct (0.05 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_solaris.go

    	if len(oob) > 0 && empty {
    		n = 0
    	}
    	return n, nil
    }
    
    //sys	acct(path *byte) (err error)
    
    func Acct(path string) (err error) {
    	if len(path) == 0 {
    		// Assume caller wants to disable accounting.
    		return acct(nil)
    	}
    
    	pathp, err := BytePtrFromString(path)
    	if err != nil {
    		return err
    	}
    	return acct(pathp)
    }
    
    //sys	__makedev(version int, major uint, minor uint) (val uint64)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 31.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc.go

    	if r0 == -1 && er != nil {
    		err = er
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Acct(path string) (err error) {
    	_p0 := uintptr(unsafe.Pointer(C.CString(path)))
    	r0, er := C.acct(C.uintptr_t(_p0))
    	if r0 == -1 && er != nil {
    		err = er
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 35.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_bsd.go

    func Poll(fds []PollFd, timeout int) (n int, err error) {
    	if len(fds) == 0 {
    		return poll(nil, 0, timeout)
    	}
    	return poll(&fds[0], len(fds), timeout)
    }
    
    // TODO: wrap
    //	Acct(name nil-string) (err error)
    //	Gethostuuid(uuid *byte, timeout *Timespec) (err error)
    //	Ptrace(req int, pid int, addr uintptr, data int) (ret uintptr, err error)
    
    //sys	Madvise(b []byte, behav int) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 15K bytes
    - Viewed (0)
  4. src/syscall/zsysnum_freebsd_386.go

    	SYS_GETLOGIN                 = 49  // { int getlogin(char *namebuf, u_int \
    	SYS_SETLOGIN                 = 50  // { int setlogin(char *namebuf); }
    	SYS_ACCT                     = 51  // { int acct(char *path); }
    	SYS_SIGALTSTACK              = 53  // { int sigaltstack(stack_t *ss, \
    	SYS_IOCTL                    = 54  // { int ioctl(int fd, u_long com, \
    	SYS_REBOOT                   = 55  // { int reboot(int opt); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gccgo.go

    int getdirent(int, uintptr_t, size_t);
    int wait4(int, uintptr_t, int, uintptr_t);
    int ioctl(int, int, uintptr_t);
    int fcntl(uintptr_t, int, uintptr_t);
    int fsync_range(int, int, long long, long long);
    int acct(uintptr_t);
    int chdir(uintptr_t);
    int chroot(uintptr_t);
    int close(int);
    int dup(int);
    void exit(int);
    int faccessat(int, uintptr_t, unsigned int, int);
    int fchdir(int);
    int fchmod(int, unsigned int);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  6. src/syscall/zsysnum_freebsd_amd64.go

    	SYS_GETLOGIN                 = 49  // { int getlogin(char *namebuf, u_int \
    	SYS_SETLOGIN                 = 50  // { int setlogin(char *namebuf); }
    	SYS_ACCT                     = 51  // { int acct(char *path); }
    	SYS_SIGALTSTACK              = 53  // { int sigaltstack(stack_t *ss, \
    	SYS_IOCTL                    = 54  // { int ioctl(int fd, u_long com, \
    	SYS_REBOOT                   = 55  // { int reboot(int opt); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/syscall_aix.go

    //sys	fsyncRange(fd int, how int, start int64, length int64) (err error) = fsync_range
    
    func Fsync(fd int) error {
    	return fsyncRange(fd, O_SYNC, 0, 0)
    }
    
    /*
     * Direct access
     */
    
    //sys	Acct(path string) (err error)
    //sys	Chdir(path string) (err error)
    //sys	Chroot(path string) (err error)
    //sys	Close(fd int) (err error)
    //sys	Dup(oldfd int) (fd int, err error)
    //sys	Exit(code int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  8. src/syscall/zsysnum_freebsd_arm.go

    	SYS_GETLOGIN                 = 49  // { int getlogin(char *namebuf, u_int \
    	SYS_SETLOGIN                 = 50  // { int setlogin(char *namebuf); }
    	SYS_ACCT                     = 51  // { int acct(char *path); }
    	SYS_SIGALTSTACK              = 53  // { int sigaltstack(stack_t *ss, \
    	SYS_IOCTL                    = 54  // { int ioctl(int fd, u_long com, \
    	SYS_REBOOT                   = 55  // { int reboot(int opt); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  9. src/syscall/zsysnum_dragonfly_amd64.go

    	SYS_GETGID        = 47  // { gid_t getgid(void); }
    	SYS_GETLOGIN      = 49  // { int getlogin(char *namebuf, u_int namelen); }
    	SYS_SETLOGIN      = 50  // { int setlogin(char *namebuf); }
    	SYS_ACCT          = 51  // { int acct(char *path); }
    	SYS_SIGALTSTACK   = 53  // { int sigaltstack(stack_t *ss, stack_t *oss); }
    	SYS_IOCTL         = 54  // { int ioctl(int fd, u_long com, caddr_t data); }
    	SYS_REBOOT        = 55  // { int reboot(int opt); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 22.9K bytes
    - Viewed (0)
  10. src/syscall/zsyscall_aix_ppc64.go

    //go:cgo_import_dynamic libc_accept accept "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_Openat openat "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_ptrace64 ptrace64 "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_Acct acct "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_Chdir chdir "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_Chmod chmod "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_Chown chown "libc.a/shr_64.o"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:50:55 UTC 2024
    - 41.7K bytes
    - Viewed (0)
Back to top