Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 134 for ptrBase (0.17 sec)

  1. src/syscall/exec_libc2.go

    		return 0, err1
    	}
    
    	if r1 != 0 {
    		// parent; return PID
    		runtime_AfterFork()
    		return int(r1), 0
    	}
    
    	// Fork succeeded, now in child.
    
    	// Enable tracing if requested.
    	if sys.Ptrace {
    		if err = ptrace(PTRACE_TRACEME, 0, 0, 0); err != nil {
    			err1 = err.(Errno)
    			goto childerror
    		}
    	}
    
    	// Session ID
    	if sys.Setsid {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  2. src/syscall/syscall_linux.go

    	return ptrace(PTRACE_SYSCALL, pid, 0, uintptr(signal))
    }
    
    func PtraceSingleStep(pid int) (err error) { return ptrace(PTRACE_SINGLESTEP, pid, 0, 0) }
    
    func PtraceAttach(pid int) (err error) { return ptrace(PTRACE_ATTACH, pid, 0, 0) }
    
    func PtraceDetach(pid int) (err error) { return ptrace(PTRACE_DETACH, pid, 0, 0) }
    
    //sys	reboot(magic1 uint, magic2 uint, cmd int, arg string) (err error)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  3. src/syscall/mkerrors.sh

    #include <netinet/ip_mroute.h>
    #include <sys/mman.h>
    #include <sys/protosw.h>
    #include <sys/ptrace.h>
    #include <sys/stropts.h>
    #include <termios.h>
    '
    
    includes_Darwin='
    #define _DARWIN_C_SOURCE
    #define KERNEL
    #define _DARWIN_USE_64_BIT_INODE
    #include <sys/types.h>
    #include <sys/event.h>
    #include <sys/ptrace.h>
    #include <sys/socket.h>
    #include <sys/sockio.h>
    #include <sys/sysctl.h>
    #include <sys/mman.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 06 21:22:22 UTC 2022
    - 10.7K bytes
    - Viewed (0)
  4. src/syscall/types_freebsd.go

    #include <fcntl.h>
    #include <signal.h>
    #include <termios.h>
    #include <stdio.h>
    #include <unistd.h>
    #include <sys/event.h>
    #include <sys/mman.h>
    #include <sys/mount.h>
    #include <sys/param.h>
    #include <sys/ptrace.h>
    #include <sys/resource.h>
    #include <sys/select.h>
    #include <sys/signal.h>
    #include <sys/socket.h>
    #include <sys/stat.h>
    #include <sys/time.h>
    #include <sys/types.h>
    #include <sys/un.h>
    #include <sys/wait.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  5. src/syscall/syscall_darwin_amd64.go

    //sys	Stat(path string, stat *Stat_t) (err error) = SYS_stat64
    //sys	Statfs(path string, stat *Statfs_t) (err error) = SYS_statfs64
    //sys   fstatat(fd int, path string, stat *Stat_t, flags int) (err error) = SYS_fstatat64
    //sys   ptrace(request int, pid int, addr uintptr, data uintptr) (err error)
    
    func SetKevent(k *Kevent_t, fd, mode, flags int) {
    	k.Ident = uint64(fd)
    	k.Filter = int16(mode)
    	k.Flags = uint16(flags)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 21:34:30 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. src/syscall/syscall_darwin_arm64.go

    //sys	Lstat(path string, stat *Stat_t) (err error)
    //sys	Stat(path string, stat *Stat_t) (err error)
    //sys	Statfs(path string, stat *Statfs_t) (err error)
    //sys	fstatat(fd int, path string, stat *Stat_t, flags int) (err error)
    //sys	ptrace(request int, pid int, addr uintptr, data uintptr) (err error)
    
    func SetKevent(k *Kevent_t, fd, mode, flags int) {
    	k.Ident = uint64(fd)
    	k.Filter = int16(mode)
    	k.Flags = uint16(flags)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 21:34:30 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. src/syscall/exec_bsd.go

    //go:build dragonfly || netbsd || (openbsd && mips64)
    
    package syscall
    
    import (
    	"runtime"
    	"unsafe"
    )
    
    type SysProcAttr struct {
    	Chroot     string      // Chroot.
    	Credential *Credential // Credential.
    	Ptrace     bool        // Enable tracing.
    	Setsid     bool        // Create session.
    	// Setpgid sets the process group ID of the child to Pgid,
    	// or, if Pgid == 0, to the new child's process ID.
    	Setpgid bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/query/PhraseQueryCommand.java

            if (terms.length == 0) {
                throw new InvalidQueryException(messages -> messages.addErrorsInvalidQueryUnknown(UserMessages.GLOBAL_PROPERTY_KEY),
                        "Unknown phrase query: " + phraseQuery);
            }
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final String field = terms[0].field();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. pkg/util/strcase/camelcase_test.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package strcase
    
    import (
    	"testing"
    
    	. "github.com/onsi/gomega"
    )
    
    func TestCamelCase(t *testing.T) {
    	cases := map[string]string{
    		"":              "",
    		"foo":           "Foo",
    		"foobar":        "Foobar",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. src/syscall/exec_freebsd.go

    // license that can be found in the LICENSE file.
    
    package syscall
    
    import (
    	"runtime"
    	"unsafe"
    )
    
    type SysProcAttr struct {
    	Chroot     string      // Chroot.
    	Credential *Credential // Credential.
    	Ptrace     bool        // Enable tracing.
    	Setsid     bool        // Create session.
    	// Setpgid sets the process group ID of the child to Pgid,
    	// or, if Pgid == 0, to the new child's process ID.
    	Setpgid bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 8.4K bytes
    - Viewed (0)
Back to top