mirror of
				https://github.com/superseriousbusiness/gotosocial.git
				synced 2025-11-03 17:42:25 -06:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			173 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			173 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// +build !linux,!darwin,!windows,!freebsd,!dragonfly,!netbsd,!openbsd
 | 
						|
 | 
						|
package memory
 | 
						|
 | 
						|
func sysTotalMemory() uint64 {
 | 
						|
	return 0
 | 
						|
}
 | 
						|
func sysFreeMemory() uint64 {
 | 
						|
	return 0
 | 
						|
}
 |