aboutsummaryrefslogtreecommitdiffstats
path: root/src/hal/components/threadtest.comp
blob: 0c3dc1d88b056c61e0c06c05240b4252952047cb (plain)
1
2
3
4
5
6
7
8
9
10
11
component threadtest "LinuxCNC HAL component for testing thread behavior";
pin out unsigned count;
function increment nofp;
function reset nofp;
license "GPL";
author "Jeff Epler";

;;

FUNCTION(increment) { count++; }
FUNCTION(reset) { count=0; }
bues.ch cgit interface