Skip to content
Snippets Groups Projects
Select Git revision
  • 33abb9a781761cbca827e93bf0a06a024ea3bb6b
  • master default protected
  • 9.0
  • 8.0
  • 7.8
  • 7.6
  • 7.4
  • 7.2
  • 7.0
  • 0.6
  • rosuav/latex-markdown-renderer
  • rxnpatch/rxnpatch
  • marcus/gobject-introspection
  • rxnpatch/8.0
  • rosuav/pre-listening-ports
  • nt-tools
  • rosuav/async-annotations
  • rosuav/pgsql-ssl
  • rxnpatch/rxnpatch-broken/2023-10-06T094250
  • grubba/fdlib
  • grubba/wip/sakura/8.0
  • v8.0.2000
  • v8.0.1998
  • v8.0.1996
  • v8.0.1994
  • v8.0.1992
  • v8.0.1990
  • v8.0.1988
  • v8.0.1986
  • rxnpatch/clusters/8.0/2025-04-29T124414
  • rxnpatch/2025-04-29T124414
  • v8.0.1984
  • v8.0.1982
  • v8.0.1980
  • v8.0.1978
  • v8.0.1976
  • v8.0.1974
  • v8.0.1972
  • v8.0.1970
  • v8.0.1968
  • v8.0.1966
41 results

getpid

Blame
    • Henrik (Grubba) Grubbström's avatar
      5c2a4c02
      Some documentation · 5c2a4c02
      Henrik (Grubba) Grubbström authored
      Rev: src/modules/system/doc/getegid:1.1
      Rev: src/modules/system/doc/geteuid:1.1
      Rev: src/modules/system/doc/getgid:1.1
      Rev: src/modules/system/doc/getpgrp:1.1
      Rev: src/modules/system/doc/getpid:1.1
      Rev: src/modules/system/doc/getppid:1.1
      Rev: src/modules/system/doc/getuid:1.1
      Rev: src/modules/system/doc/hardlink:1.1
      Rev: src/modules/system/doc/initgroups:1.1
      Rev: src/modules/system/doc/readlink:1.1
      Rev: src/modules/system/doc/setegid:1.1
      Rev: src/modules/system/doc/seteuid:1.1
      Rev: src/modules/system/doc/setgid:1.1
      Rev: src/modules/system/doc/setuid:1.1
      Rev: src/modules/system/doc/symlink:1.1
      5c2a4c02
      History
      Some documentation
      Henrik (Grubba) Grubbström authored
      Rev: src/modules/system/doc/getegid:1.1
      Rev: src/modules/system/doc/geteuid:1.1
      Rev: src/modules/system/doc/getgid:1.1
      Rev: src/modules/system/doc/getpgrp:1.1
      Rev: src/modules/system/doc/getpid:1.1
      Rev: src/modules/system/doc/getppid:1.1
      Rev: src/modules/system/doc/getuid:1.1
      Rev: src/modules/system/doc/hardlink:1.1
      Rev: src/modules/system/doc/initgroups:1.1
      Rev: src/modules/system/doc/readlink:1.1
      Rev: src/modules/system/doc/setegid:1.1
      Rev: src/modules/system/doc/seteuid:1.1
      Rev: src/modules/system/doc/setgid:1.1
      Rev: src/modules/system/doc/setuid:1.1
      Rev: src/modules/system/doc/symlink:1.1
    float 947 B
    NAME
    	float - floating point numbers
    
    SYNTAX EXAMPLE
    	0.9
    	1.0
    	2.7e7
    
    DESCRIPTION
    	This type stores a floating point number, normally it use 4 bytes
    	of storage when used in a global variable.
    
    	A list of operators that applies to floats follows:
    	In this list a and b is used to represent a float expression:
    
    	a + b	summation
    	a - b	subtraction
    	a * b	multiplication
    	a / b	division
    	a % b	modulo ( same thing as  a - floor( a / b ) * b )
    	- a	negation
    	a == b	return 1 if a is equal to b, 0 otherwise
    	a != b	return 0 if a is equal to b, 1 otherwise
    	a < b	returns 1 if a is lesser than b, 0 otherwise
    	a <= b	returns 1 if a is lesser or equal to b, 0 otherwise
    	a > b	returns 1 if a is greater than b, 0 otherwise
    	a >= b	returns 1 if a is greater or equal to b, 0 otherwise
    
    NOTA BENE
    	floats and ints cannot be used together, they have to be cast
    	to the same type first.
    
    KEYWORDS
    	types
    
    SEE ALSO
    	math/sin, math/cos, math/tan, math/sqrt