rtapi_app_main

NOMBRE
SINTAXIS
ARGUMENTOS
DESCRIPCIÃN
VALOR DEVUELTO
CONSIDERACIONES EN TIEMPO REAL
VER TAMBIÃN

NOMBRE

rtapi_app_main - Función proporcionada por el usuario para inicializar un componente

SINTAXIS

#include <rtapi_app.h>

int rtapi_app_main(void) {...}

ARGUMENTOS

Ninguno

DESCRIPCIÃN

El cuerpo de rtapi_app_main, que es proporcionado por el autor del componente, generalmente consiste en una llamada a rtapi_init o hal_init, seguido de otro código de inicialización especÃfico del componente.

VALOR DEVUELTO

Devuelve 0 en éxito. Devuelve un valor errno negativo (por ejemplo, -EINVAL) en error. El código existente también devuelve valores de error RTAPI o HAL, pero usando valores errno negativos da mejores diagnósticos desde insmod.

CONSIDERACIONES EN TIEMPO REAL

Llamado automáticamente por la infraestructura rtapi en un contexto de inicialización (no tiempo real).

VER TAMBIÃN

rtapi_app_exit(3rtapi), rtapi_init(3rtapi), hal_init(3hal)