Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for godebugNotify (0.2 sec)

  1. src/runtime/runtime.go

    	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)
    	if key == "GODEBUG" {
    		godebugEnv.Store(nil)
    		godebugNotify(true)
    	}
    }
    
    // writeErrStr writes a string to descriptor 2.
    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