Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for runtimeUnsetenv (0.11 sec)

  1. src/syscall/syscall.go

    }
    
    // Getpagesize and Exit are provided by the runtime.
    
    func Getpagesize() int
    func Exit(code int)
    
    // runtimeSetenv and runtimeUnsetenv are provided by the runtime.
    func runtimeSetenv(k, v string)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. src/runtime/runtime.go

    	}
    }
    
    //go:linkname syscall_runtimeSetenv syscall.runtimeSetenv
    func syscall_runtimeSetenv(key, value string) {
    	setenv_c(key, value)
    	if key == "GODEBUG" {
    		p := new(string)
    		*p = value
    		godebugEnv.Store(p)
    		godebugNotify(true)
    	}
    }
    
    //go:linkname syscall_runtimeUnsetenv syscall.runtimeUnsetenv
    func syscall_runtimeUnsetenv(key string) {
    	unsetenv_c(key)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top