Skip to content
This repository has been archived by the owner on Jul 18, 2022. It is now read-only.
/ optimised-true Public archive

[Complete, except other architectures may be added in future] Optimised implementations of true(1) and false(1)

License

Notifications You must be signed in to change notification settings

maandree/optimised-true

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NAME
	true - return true value
	false - return false value

SYNOPSIS
	true [ignored arguments]
	false [ignored arguments]

DESCRIPTION
	Optimised implementations of true(1p) and false(1p).
	true and false shall do nothing, successfully and
	unsuccessfully, respectively.

	If your microarchitecture is especially supported,
	true and false are implemented in assembler, without
	a C runtime and only requires one page of memory.

	If your microarchitecture is not especially supported,
	true and false are implemented in C using only a
	return statement in the main function. In this case,
	a C runtime is used which slows down the program
	significantly and it is usually required that somewhere
	around 400 KB to 800 KB of memory is used (that is
	about 150 pages.)

OPTIONS
	None.

EXIT STATUS
	true shall exit with the status 0.
	false shall exit with any value other than 0.
	In this implement false exits with the status 1.

RATIONALE
	None.

NOTES
	Your shell may have its own verions of true(1p)
	and false(1p). If it doesn't, and false(1) is last
	in your PATH, you could prove the performance of
	false(1) by not installing false(1). However, if
	this is done, your shell will probably complain
	that false(1) cannot be found.

BUGS
	None. These programs are about as simple as it gets.

SEE ALSO
	true(1p), false(1p)

About

[Complete, except other architectures may be added in future] Optimised implementations of true(1) and false(1)

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published