Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getSystemNSS (0.32 sec)

  1. src/net/nss.go

    	ch          chan struct{} // guards lastChecked and modTime
    	lastChecked time.Time     // last time nsswitch.conf was checked
    
    	mu      sync.Mutex // protects nssConf
    	nssConf *nssConf
    }
    
    func getSystemNSS() *nssConf {
    	nssConfig.tryUpdate()
    	nssConfig.mu.Lock()
    	conf := nssConfig.nssConf
    	nssConfig.mu.Unlock()
    	return conf
    }
    
    // init initializes conf and is only called via conf.initOnce.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:15:51 UTC 2022
    - 5.5K bytes
    - Viewed (0)
Back to top