From b809456de50fa0b751921965075e4669e04bfb04 Mon Sep 17 00:00:00 2001 From: Michael Haberler Date: Mon, 8 Aug 2016 02:29:11 +0200 Subject: [PATCH] Delete hal_set_constructor.asciidoc this never worked, even in lcnc, and is deprecated. --- docs/man/man3/hal_set_constructor.asciidoc | 50 ---------------------- 1 file changed, 50 deletions(-) delete mode 100644 docs/man/man3/hal_set_constructor.asciidoc diff --git a/docs/man/man3/hal_set_constructor.asciidoc b/docs/man/man3/hal_set_constructor.asciidoc deleted file mode 100644 index 91fe849163..0000000000 --- a/docs/man/man3/hal_set_constructor.asciidoc +++ /dev/null @@ -1,50 +0,0 @@ ---- ---- -:skip-front-matter: - -= hal_set_constructor -:manmanual: HAL Components -:mansource: ../man/man3/hal_set_constructor.asciidoc -:man version : - - -== NAME - -hal_set_constructor -- Set the constructor function for this component - - - -== SYNTAX -typedef int (*hal_constructor_t)(const char *prefix, const char *arg); -int hal_set_constructor(int __comp_id__, hal_constructor_t __constructor__) - - - -== ARGUMENTS -__comp_id__ -A HAL component identifier returned by an earlier call to **hal_init**. - -__prefix__ -The prefix to be given to the pins, parameters, and functions in the new -instance - -arg -An argument that may be used by the component to customize this istance. - - - -== DESCRIPTION -As an experimental feature in HAL 2.1, components may be __constructable__. -Such a component may create pins and parameters not only at the time the module -is loaded, but it may create additional pins and parameters, and functions on -demand. - - - -== RETURN VALUE -Returns a HAL status code. - - - -== SEE ALSO -**halcmd**