57 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			V
		
	
	
			
		
		
	
	
			57 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			V
		
	
	
// Copyright (c) 2019-2021 Alexander Medvednikov. All rights reserved.
 | 
						|
// Use of this source code is governed by an MIT license
 | 
						|
// that can be found in the LICENSE file.
 | 
						|
 | 
						|
module runtime
 | 
						|
 | 
						|
import os
 | 
						|
 | 
						|
// nr_jobs returns the same as `nr_cpus` with the difference that if an
 | 
						|
// environment variable `VJOBS` is set, and has a value > 0,
 | 
						|
// then `nr_jobs` will return that number instead.
 | 
						|
// This is useful for runtime tweaking of e.g. threaded or concurrent code.
 | 
						|
pub fn nr_jobs() int {
 | 
						|
	mut cpus := nr_cpus() - 1
 | 
						|
	// allow for overrides, for example using `VJOBS=32 ./v test .`
 | 
						|
	vjobs := os.getenv('VJOBS').int()
 | 
						|
	if vjobs > 0 {
 | 
						|
		cpus = vjobs
 | 
						|
	}
 | 
						|
	if cpus == 0 {
 | 
						|
		return 1
 | 
						|
	}
 | 
						|
	return cpus
 | 
						|
}
 | 
						|
 | 
						|
// is_32bit returns true if the current executable is running on a 32 bit system.
 | 
						|
pub fn is_32bit() bool {
 | 
						|
	$if x32 {
 | 
						|
		return true
 | 
						|
	}
 | 
						|
	return false
 | 
						|
}
 | 
						|
 | 
						|
// is_64bit returns true if the current executable is running on a 64 bit system.
 | 
						|
pub fn is_64bit() bool {
 | 
						|
	$if x64 {
 | 
						|
		return true
 | 
						|
	}
 | 
						|
	return false
 | 
						|
}
 | 
						|
 | 
						|
// is_little_endian returns true if the current executable is running on a little-endian system.
 | 
						|
pub fn is_little_endian() bool {
 | 
						|
	$if little_endian {
 | 
						|
		return true
 | 
						|
	}
 | 
						|
	return false
 | 
						|
}
 | 
						|
 | 
						|
// is_big_endian returns true if the current executable is running on a big-endian system.
 | 
						|
pub fn is_big_endian() bool {
 | 
						|
	$if big_endian {
 | 
						|
		return true
 | 
						|
	}
 | 
						|
	return false
 | 
						|
}
 |