Hallo, dies ist ein Test.
PWD: /www/data-lst1/unixsoft/unixsoft/kaempfer/.public_html
Running in File Mode
Relative path: ./../../../../../../usr/include/pygobject-3.0/../rcm_module.h
Real path: /usr/include/rcm_module.h
Zurück
/* * Copyright (c) 1999, 2020, Oracle and/or its affiliates. All rights reserved. */ #ifndef _RCM_MODULE_H #define _RCM_MODULE_H #include <librcm.h> #ifdef __cplusplus extern "C" { #endif /* * Each RCM module is required to define * * struct rcm_mod_ops *rcm_mod_init(); * const char *rcm_mod_info(); * int rcm_mod_fini(); * * The rcm_mod_init() is always invoked when the module is loaded. It should * return an rcm_mod_ops vector. * * Once the module is loaded, the regis() entry point is * called to allow the module to inform the framework all the * events and devices it cares about. * * If at any point of time, the module has no outstanding registration * against any device, the module will be unloaded. The rcm_mod_fini() * entry point, if defined, is always invoked before module unloading. */ /* * ops vector: * The ops version must have a valid version number and all function fields * must be non-NULL. Non-conforming RCM modules are rejected. * * Valid ops versions are defined below. */ #define RCM_MOD_OPS_V1 1 #define RCM_MOD_OPS_V2 2 #define RCM_MOD_OPS_VERSION RCM_MOD_OPS_V2 struct rcm_mod_ops { int version; int (*rcmop_register)(rcm_handle_t *); int (*rcmop_unregister)(rcm_handle_t *); int (*rcmop_get_info)(rcm_handle_t *, char *, id_t, uint_t, char **, char **, nvlist_t *, rcm_info_t **); int (*rcmop_request_suspend)(rcm_handle_t *, char *, id_t, timespec_t *, uint_t, char **, rcm_info_t **); int (*rcmop_notify_resume)(rcm_handle_t *, char *, id_t, uint_t, char **, rcm_info_t **); int (*rcmop_request_offline)(rcm_handle_t *, char *, id_t, uint_t, char **, rcm_info_t **); int (*rcmop_notify_online)(rcm_handle_t *, char *, id_t, uint_t, char **, rcm_info_t **); int (*rcmop_notify_remove)(rcm_handle_t *, char *, id_t, uint_t, char **, rcm_info_t **); /* * Fields for version 2 and beyond */ int (*rcmop_request_capacity_change)(rcm_handle_t *, char *, id_t, uint_t, nvlist_t *, char **, rcm_info_t **); int (*rcmop_notify_capacity_change)(rcm_handle_t *, char *, id_t, uint_t, nvlist_t *, char **, rcm_info_t **); int (*rcmop_notify_event)(rcm_handle_t *, char *, id_t, uint_t, char **, nvlist_t *, rcm_info_t **); }; /* * Version 1 struct for compatibility */ struct rcm_mod_ops_v1 { int version; int (*rcmop_register)(rcm_handle_t *); int (*rcmop_unregister)(rcm_handle_t *); int (*rcmop_get_info)(rcm_handle_t *, char *, id_t, uint_t, char **, rcm_info_t **); int (*rcmop_request_suspend)(rcm_handle_t *, char *, id_t, timespec_t *, uint_t, char **, rcm_info_t **); int (*rcmop_notify_resume)(rcm_handle_t *, char *, id_t, uint_t, char **, rcm_info_t **); int (*rcmop_request_offline)(rcm_handle_t *, char *, id_t, uint_t, char **, rcm_info_t **); int (*rcmop_notify_online)(rcm_handle_t *, char *, id_t, uint_t, char **, rcm_info_t **); int (*rcmop_notify_remove)(rcm_handle_t *, char *, id_t, uint_t, char **, rcm_info_t **); }; /* * RCM modules should use rcm_log_message() instead of syslog(). * This allows the daemon to control the amount of message to be * printed and to redirect output to screen for debugging purposes. */ /* * Messag levels for rcm_log_message */ #define RCM_ERROR 0 /* error message */ #define RCM_WARNING 1 #define RCM_NOTICE 2 #define RCM_INFO 3 /* 4 is not used for now */ #define RCM_DEBUG 5 /* debug message */ #define RCM_TRACE1 6 /* tracing message */ #define RCM_TRACE2 7 #define RCM_TRACE3 8 #define RCM_TRACE4 9 #define RCM_MIN_LEVEL RCM_ERROR #define RCM_MAX_LEVEL RCM_TRACE4 extern void rcm_log_message(int, char *, ...); #ifdef __cplusplus } #endif #endif /* _RCM_MODULE_H */