Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 270 for syscalls (0.11 sec)

  1. src/runtime/defs_darwin.go

    	VM_REGION_BASIC_INFO_64       = C.VM_REGION_BASIC_INFO_64
    )
    
    type StackT C.struct_sigaltstack
    type Sighandler C.union___sigaction_u
    
    type Sigaction C.struct___sigaction // used in syscalls
    type Usigaction C.struct_sigaction  // used by sigaction second argument
    type Sigset C.sigset_t
    type Sigval C.union_sigval
    type Siginfo C.siginfo_t
    type Timeval C.struct_timeval
    type Itimerval C.struct_itimerval
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. pkg/kubelet/stats/host_stats_provider.go

    	getPodEtcHostsStats(podUID types.UID, rootFsInfo *cadvisorapiv2.FsInfo) (*statsapi.FsStats, error)
    }
    
    type hostStatsProvider struct {
    	// osInterface is the interface for syscalls.
    	osInterface kubecontainer.OSInterface
    	// podEtcHostsPathFunc fetches a pod etc hosts path by uid.
    	podEtcHostsPathFunc PodEtcHostsPathFunc
    	// podLogsDirectory is the root directory path for pod logs.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. src/cmd/trace/procgen.go

    		// Goroutine exited a blocked syscall.
    		gs.blockedSyscallEnd(ev.Time(), ev.Stack(), ctx)
    	}
    
    	// Handle syscalls.
    	if to == trace.GoSyscall && ev.Proc() != trace.NoProc {
    		start := ev.Time()
    		if from == trace.GoUndetermined {
    			// Back-date the event to the start of the trace.
    			start = ctx.startTime
    		}
    		// Write down that we've entered a syscall. Note: we might have no P here
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. src/cmd/trace/threadgen.go

    	}
    	if from == trace.GoSyscall {
    		// Exiting syscall.
    		gs.syscallEnd(ev.Time(), to != trace.GoRunning, ctx)
    	}
    
    	// Handle syscalls.
    	if to == trace.GoSyscall {
    		start := ev.Time()
    		if from == trace.GoUndetermined {
    			// Back-date the event to the start of the trace.
    			start = ctx.startTime
    		}
    		// Write down that we've entered a syscall. Note: we might have no P here
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. src/os/path_windows_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package os_test
    
    import (
    	"fmt"
    	"internal/syscall/windows"
    	"internal/testenv"
    	"os"
    	"path/filepath"
    	"strings"
    	"syscall"
    	"testing"
    )
    
    func TestAddExtendedPrefix(t *testing.T) {
    	// Test addExtendedPrefix instead of fixLongPath so the path manipulation code
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:37:32 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/main.go

    			*flagOutfile += ".exe"
    		}
    	}
    
    	interpreter = *flagInterpreter
    
    	if *flagBuildid == "" && ctxt.Target.IsOpenbsd() {
    		// TODO(jsing): Remove once direct syscalls are no longer in use.
    		// OpenBSD 6.7 onwards will not permit direct syscalls from a
    		// dynamically linked binary unless it identifies the binary
    		// contains a .note.go.buildid ELF note. See issue #36435.
    		*flagBuildid = "go-openbsd"
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. src/runtime/debugcall.go

    	// No user calls from the system stack.
    	if getg() != getg().m.curg {
    		return debugCallSystemStack
    	}
    	if sp := getcallersp(); !(getg().stack.lo < sp && sp <= getg().stack.hi) {
    		// Fast syscalls (nanotime) and racecall switch to the
    		// g0 stack without switching g. We can't safely make
    		// a call in this state. (We can't even safely
    		// systemstack.)
    		return debugCallSystemStack
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 20:50:21 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  8. src/cmd/trace/jsontrace_test.go

    			checkMetaNamesEmitted(t, data, "thread_name", []string{"GC", "Network", "Timers", "Syscalls", "Proc 0"})
    			checkProcStartStop(t, data)
    			checkSyscalls(t, data)
    			checkNetworkUnblock(t, data)
    			// TODO(mknyszek): Check for flow events.
    		})
    	}
    }
    
    func checkSyscalls(t *testing.T, data format.Data) {
    	data = filterViewerTrace(data,
    		filterEventName("syscall"),
    		filterStackRootFunc("main.blockingSyscall"))
    	if len(data.Events) <= 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. docs/metrics/prometheus/grafana/minio-dashboard.json

              "expr": "rate(minio_node_syscall_write_total{job=~\"$scrape_jobs\"}[$__rate_interval])",
              "interval": "",
              "legendFormat": "Write Syscalls [{{server}}]",
              "refId": "B"
            }
          ],
          "title": "Syscalls",
          "type": "timeseries"
        },
        {
          "datasource": {
            "type": "prometheus",
            "uid": "${DS_PROMETHEUS}"
          },
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 15 10:03:01 UTC 2024
    - 93K bytes
    - Viewed (0)
  10. src/runtime/cgocall.go

    	checkm := gp.m
    
    	// Save current syscall parameters, so m.winsyscall can be
    	// used again if callback decide to make syscall.
    	winsyscall := gp.m.winsyscall
    
    	// entersyscall saves the caller's SP to allow the GC to trace the Go
    	// stack. However, since we're returning to an earlier stack frame and
    	// need to pair with the entersyscall() call made by cgocall, we must
    	// save syscall* and let reentersyscall restore them.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
Back to top