File:  [ELWIX - Embedded LightWeight unIX -] / libaitsched / inc / aitsched.h
Revision 1.34: download - view: text, annotated - select for diffs - revision graph
Wed Jul 16 11:07:06 2025 UTC (2 months ago) by misho
Branches: MAIN
CVS tags: sched8_5, SCHED8_4, HEAD
Version 8.4

    1: /*************************************************************************
    2: * (C) 2011 AITNET ltd - Sofia/Bulgaria - <misho@aitbg.com>
    3: *  by Michael Pounov <misho@openbsd-bg.org>
    4: *
    5: * $Author: misho $
    6: * $Id: aitsched.h,v 1.34 2025/07/16 11:07:06 misho Exp $
    7: *
    8: **************************************************************************
    9: The ELWIX and AITNET software is distributed under the following
   10: terms:
   11: 
   12: All of the documentation and software included in the ELWIX and AITNET
   13: Releases is copyrighted by ELWIX - Sofia/Bulgaria <info@elwix.org>
   14: 
   15: Copyright 2004 - 2024
   16: 	by Michael Pounov <misho@elwix.org>.  All rights reserved.
   17: 
   18: Redistribution and use in source and binary forms, with or without
   19: modification, are permitted provided that the following conditions
   20: are met:
   21: 1. Redistributions of source code must retain the above copyright
   22:    notice, this list of conditions and the following disclaimer.
   23: 2. Redistributions in binary form must reproduce the above copyright
   24:    notice, this list of conditions and the following disclaimer in the
   25:    documentation and/or other materials provided with the distribution.
   26: 3. All advertising materials mentioning features or use of this software
   27:    must display the following acknowledgement:
   28: This product includes software developed by Michael Pounov <misho@elwix.org>
   29: ELWIX - Embedded LightWeight unIX and its contributors.
   30: 4. Neither the name of AITNET nor the names of its contributors
   31:    may be used to endorse or promote products derived from this software
   32:    without specific prior written permission.
   33: 
   34: THIS SOFTWARE IS PROVIDED BY AITNET AND CONTRIBUTORS ``AS IS'' AND
   35: ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   36: IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   37: ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
   38: FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
   39: DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
   40: OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
   41: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
   42: LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
   43: OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   44: SUCH DAMAGE.
   45: */
   46: #ifndef __AITSCHED_H
   47: #define __AITSCHED_H
   48: 
   49: 
   50: #include <sys/types.h>
   51: #include <sys/queue.h>
   52: #include <sys/select.h>
   53: #include <sys/uio.h>
   54: #include <stdint.h>
   55: #include <pthread.h>
   56: #include <assert.h>
   57: #ifdef EVFILT_LIO
   58: #include <aio.h>
   59: #endif
   60: 
   61: 
   62: /* criteria type */
   63: #define CRITERIA_ANY	0
   64: #define CRITERIA_CALL	1
   65: #define CRITERIA_ARG	2
   66: #define CRITERIA_FD	3
   67: #define CRITERIA_VAL	4
   68: #define CRITERIA_TS	5
   69: #define CRITERIA_DATA	6
   70: #define CRITERIA_DATLEN	7
   71: #define CRITERIA_ID	8
   72: 
   73: 
   74: /* early declaration for root & task */
   75: typedef struct sched_Task	sched_task_t;
   76: typedef struct sched_RootTask	sched_root_task_t;
   77: 
   78: typedef enum {
   79: 	taskREAD = 0,
   80: 	taskWRITE,
   81: 	taskTIMER,
   82: 	taskALARM,
   83: 	taskNODE,
   84: 	taskPROC,
   85: 	taskSIGNAL,
   86: 	taskAIO,
   87: 	taskLIO,
   88: 	taskUSER,
   89: 	taskEVENT,
   90: 	taskTASK,
   91: 	taskSUSPEND, 
   92: 	taskREADY,
   93: 	taskUNUSE,
   94: 	taskTHREAD, 
   95: 	taskRTC,
   96: 	taskMAX
   97: } sched_task_type_t;
   98: 
   99: /* hooks */
  100: typedef void *(*sched_hook_func_t)(void *, void *);
  101: struct sched_HooksTask {
  102: 	struct {
  103: 		/* read(sched_task_t *task, NULL) -> int */
  104: 		sched_hook_func_t	read;
  105: 		/* write(sched_task_t *task, NULL) -> int */
  106: 		sched_hook_func_t	write;
  107: 		/* timer(sched_task_t *task, struct timespec *ts) -> int */
  108: 		sched_hook_func_t	timer;
  109: 		/* alarm(sched_task_t *task, NULL) -> int */
  110: 		sched_hook_func_t	alarm;
  111: 		/* node(sched_task_t *task, NULL) -> int */
  112: 		sched_hook_func_t	node;
  113: 		/* proc(sched_task_t *task, NULL) -> int */
  114: 		sched_hook_func_t	proc;
  115: 		/* signal(sched_task_t *task, NULL) -> int */
  116: 		sched_hook_func_t	signal;
  117: 		/* aio(sched_task_t *task, NULL) -> int */
  118: 		sched_hook_func_t	aio;
  119: 		/* lio(sched_task_t *task, NULL) -> int */
  120: 		sched_hook_func_t	lio;
  121: 		/* user(sched_task_t *task, NULL) -> int */
  122: 		sched_hook_func_t	user;
  123: 		/* event(sched_task_t *task, NULL) -> int */
  124: 		sched_hook_func_t	event;
  125: 		/* task(sched_task_t *task, NULL) -> int */
  126: 		sched_hook_func_t	task;
  127: 		/* suspend(sched_task_t *task, NULL) -> int */
  128: 		sched_hook_func_t	suspend;
  129: 		/* thread(sched_task_t *task, NULL) -> int */
  130: 		sched_hook_func_t	thread;
  131: 		/* rtc(sched_task_t *task, NULL) -> int */
  132: 		sched_hook_func_t	rtc;
  133: 	}	hook_add;
  134: 	struct {
  135: 		/* exit(sched_task_t *task, void *exitValue) -> int */
  136: 		sched_hook_func_t	exit;
  137: 		/* cancel(sched_task_t *task, NULL) -> int */
  138: 		sched_hook_func_t	cancel;
  139: 		/* resume(sched_task_t *task, NULL) -> int */
  140: 		sched_hook_func_t	resume;
  141: 		/* run(sched_root_task_t *root, NULL) -> int */
  142: 		sched_hook_func_t	run;
  143: 		/* fetch(sched_root_task_t *root, NULL) -> sched_task_t* */
  144: 		sched_hook_func_t	fetch;
  145: 		/* exception(sched_root_task_t *root, NULL) -> int */
  146: 		sched_hook_func_t	exception;
  147: 		/* condition(sched_root_task_t *root, intptr_t *stopValue) -> int */
  148: 		sched_hook_func_t	condition;
  149: 	}	hook_exec;
  150: 	struct {
  151: 		/* init(sched_root_task_t *root, void *data) -> int */
  152: 		sched_hook_func_t	init;
  153: 		/* fini(sched_root_task_t *root, NULL) -> int */
  154: 		sched_hook_func_t	fini;
  155: 		/* error(sched_root_task_t *root, int errno) -> int */
  156: 		sched_hook_func_t	error;
  157: 	}	hook_root;
  158: };
  159: typedef struct sched_HooksTask hooks_task_t;
  160: 
  161: /* task callback, like pthread callback! */
  162: typedef void *(*sched_task_func_t)(sched_task_t * /* current task data*/);
  163: #define SCHED_TASK_DEFINE(x)	void *(x)(sched_task_t*)
  164: 
  165: /* task lock helpers */
  166: #define TASK_LOCK(x)		((x)->task_lock = 42)
  167: #define TASK_UNLOCK(x)		((x)->task_lock ^= (x)->task_lock)
  168: #define TASK_ISLOCKED(x)	((x)->task_lock)
  169: 
  170: /* task & queue */
  171: struct sched_Task {
  172: 	uintptr_t			task_id;
  173: #define TASK_ID(x)	((struct sched_Task*) (x)->task_id)
  174: 	sched_task_type_t		task_type;
  175: #define TASK_TYPE(x)	(x)->task_type
  176: 	volatile int			task_lock;
  177: 
  178: 	sched_root_task_t		*task_root;
  179: #define TASK_ROOT(x)	(x)->task_root
  180: 	sched_task_func_t		task_func;
  181: #define TASK_FUNC(x)	(x)->task_func
  182: 	intptr_t			task_ret;
  183: #define TASK_RET(x)	(x)->task_ret
  184: 	unsigned long			task_flag;
  185: #define TASK_FLAG(x)	(x)->task_flag
  186: 
  187: 	void				*task_arg;
  188: 	union {
  189: 		unsigned long	v;
  190: 		intptr_t	fd;
  191: 		struct timespec	ts;
  192: 	}				task_val;
  193: #define TASK_ARG(x)	(x)->task_arg
  194: #define TASK_VAL(x)	(x)->task_val.v
  195: #define TASK_FD(x)	(x)->task_val.fd
  196: #define TASK_TS(x)	(x)->task_val.ts
  197: 
  198: #define TASK_TS2TV(x, tvp)	(assert((tvp)), (tvp)->tv_sec = (x)->task_val.ts.tv_sec, \
  199: 					(tvp)->tv_usec = (x)->task_val.ts.tv_nsec / 1000)
  200: 
  201: 	struct iovec			task_data;
  202: #define TASK_DATA(x)	(x)->task_data.iov_base
  203: #define TASK_DATLEN(x)	(x)->task_data.iov_len
  204: 
  205: 	unsigned long			task_harg;
  206: #define TASK_HARG(x)	(x)->task_harg
  207: 
  208: 	TAILQ_ENTRY(sched_Task)		task_node;
  209: };
  210: typedef TAILQ_HEAD(, sched_Task) sched_queue_t;
  211: #define TASK_DATA_SET(x, _dp, _dl)	do { \
  212: 						if ((x)) { \
  213: 							(x)->task_data.iov_base = (_dp); \
  214: 							(x)->task_data.iov_len = _dl; \
  215: 						} \
  216: 					while (0)
  217: 
  218: /* root task */
  219: struct sched_RootTask {
  220: 	int		root_kq;
  221: 	fd_set		root_fds[3];
  222: 	struct timespec	root_wait;
  223: 	struct timespec	root_poll;
  224: 	unsigned long	root_miss;
  225: 	intptr_t	root_cond[1];
  226: 	void		*root_ret;
  227: #ifdef HAVE_LIBPTHREAD
  228: 	pthread_mutex_t	root_sigmtx;
  229: 	pthread_t	root_sigthr;
  230: 	sigset_t	root_sigset;
  231: 	sigset_t	root_oldset;
  232: #endif
  233: 
  234: 	pthread_mutex_t	root_mtx[taskMAX];
  235: 
  236: 	sched_queue_t	root_read;
  237: 	sched_queue_t	root_write;
  238: 	sched_queue_t	root_timer;
  239: 	sched_queue_t	root_alarm;
  240: 	sched_queue_t	root_node;
  241: 	sched_queue_t	root_proc;
  242: 	sched_queue_t	root_signal;
  243: 	sched_queue_t	root_aio;
  244: 	sched_queue_t	root_lio;
  245: 	sched_queue_t	root_user;
  246: 	sched_queue_t	root_event;
  247: 	sched_queue_t	root_task;
  248: 	sched_queue_t	root_suspend;
  249: 	sched_queue_t	root_ready;
  250: 	sched_queue_t	root_unuse;
  251: 	sched_queue_t	root_thread;
  252: 	sched_queue_t	root_rtc;
  253: 
  254: 	hooks_task_t	root_hooks;
  255: 	struct iovec	root_data;
  256: #define ROOT_DATA(x)	(x)->root_data.iov_base
  257: #define ROOT_DATLEN(x)	(x)->root_data.iov_len
  258: };
  259: #define ROOT_QUEUE_EMPTY(x, _q)	TAILQ_EMPTY(&((x)->root_##_q))
  260: #define ROOT_RETURN(x)	(x)->root_ret
  261: 
  262: #ifdef __cplusplus
  263: extern "C" {
  264: #endif
  265: 
  266: int sched_GetErrno();
  267: const char *sched_GetError();
  268: 
  269: 
  270: /*
  271:  * schedInit() - Init scheduler
  272:  *
  273:  * @data = optional data if !=NULL
  274:  * @datlen = data len if data is set
  275:  * return: allocated root task if ok or NULL error
  276:  */
  277: sched_root_task_t *schedInit(void ** __restrict data, size_t datlen);
  278: #define schedBegin()	schedInit((void**) &schedRegisterHooks, 0)
  279: /*
  280:  * schedEnd() - End scheduler & free all resources
  281:  *
  282:  * @root = root task
  283:  * return: -1 error or 0 ok
  284:  */
  285: int schedEnd(sched_root_task_t ** __restrict root);
  286: /*
  287:  * schedRegisterHooks() - Register IO handles and bind tasks to it
  288:  *
  289:  * @root = root task
  290:  * return: -1 error or 0 ok
  291:  */
  292: int schedRegisterHooks(sched_root_task_t * __restrict root);
  293: /*
  294:  * sched_useTask() - Get and init new task
  295:  *
  296:  * @root = root task
  297:  * return: NULL error or !=NULL prepared task
  298:  */
  299: sched_task_t *sched_useTask(sched_root_task_t * __restrict root);
  300: /*
  301:  * sched_unuseTask() - Unlock and put task to unuse queue
  302:  *
  303:  * @task = task
  304:  * return: always is NULL
  305:  */
  306: sched_task_t *sched_unuseTask(sched_task_t * __restrict task);
  307: /*
  308:  * schedPolling() - Polling timeout period if no timer task is present
  309:  *
  310:  * @root = root task
  311:  * @ts = timeout polling period, if ==NULL INFINIT timeout
  312:  * @tsold = old timeout polling if !=NULL
  313:  * return: -1 error or 0 ok
  314:  */
  315: int schedPolling(sched_root_task_t * __restrict root, 
  316: 		struct timespec * __restrict ts, struct timespec * __restrict tsold);
  317: /*
  318:  * schedTermCondition() - Activate hook for scheduler condition kill
  319:  *
  320:  * @root = root task
  321:  * @condValue = condition value, kill schedRun() if condValue == killState
  322:  * return: -1 error or 0 ok
  323:  */
  324: int schedTermCondition(sched_root_task_t * __restrict root, intptr_t * __restrict condValue);
  325: /*
  326:  * schedCall() - Call task execution function
  327:  *
  328:  * @task = current task
  329:  * return: !=NULL error or =NULL ok
  330:  */
  331: void *schedCall(sched_task_t * __restrict task);
  332: /*
  333:  * schedFetch() - Fetch ready task
  334:  *
  335:  * @root = root task
  336:  * return: =NULL error or !=NULL ready task
  337:  */
  338: void *schedFetch(sched_root_task_t * __restrict root);
  339: /*
  340:  * schedRun() - Scheduler *run loop*
  341:  *
  342:  * @root = root task
  343:  * @killState = kill condition variable, if !=0 stop scheduler loop
  344:  * return: -1 error or 0 ok
  345:  */
  346: int schedRun(sched_root_task_t *root, volatile intptr_t * __restrict killState);
  347: /*
  348:  * schedCancel() - Cancel task from scheduler
  349:  *
  350:  * @task = task
  351:  * return: -1 error or 0 ok
  352:  */
  353: int schedCancel(sched_task_t * __restrict task);
  354: /*
  355:  * schedCancelby() - Cancel task from scheduler by criteria
  356:  *
  357:  * @root = root task
  358:  * @type = cancel from queue type, if =taskMAX cancel same task from all queues
  359:  * @criteria = find task by criteria 
  360:  * 	[ CRITERIA_ANY|CRITERIA_CALL|CRITERIA_ARG|CRITERIA_FD|CRITERIA_VAL|
  361:  * 		CRITERIA_ID|CRITERIA_TS|CRITERIA_DATA|CRITERIA_DATLEN ]
  362:  * @param = search parameter
  363:  * @hook = custom cleanup hook function, may be NULL
  364:  * return: -1 error, -2 error in sub-stage cancel execution, -3 error from custom hook or 0 ok
  365:  */
  366: int schedCancelby(sched_root_task_t * __restrict root, sched_task_type_t type, 
  367: 		unsigned char criteria, void *param, sched_hook_func_t hook);
  368: /*
  369:  * schedQuery() - Query task in scheduler
  370:  *
  371:  * @task = task
  372:  * return: -1 error, 0 found  and 1 not found
  373:  */
  374: int schedQuery(sched_task_t * __restrict task);
  375: /*
  376:  * schedQueryby() - Query task in scheduler by criteria
  377:  *
  378:  * @root = root task
  379:  * @type = query from queue type, if =taskMAX query same task from all queues
  380:  * @criteria = find task by criteria 
  381:  * 	[ CRITERIA_ANY|CRITERIA_CALL|CRITERIA_ARG|CRITERIA_FD|CRITERIA_VAL|
  382:  * 		CRITERIA_ID|CRITERIA_TS|CRITERIA_DATA|CRITERIA_DATLEN ]
  383:  * @param = search parameter
  384:  * return: NULL not found or !=NULL task
  385:  */
  386: sched_task_t *schedQueryby(sched_root_task_t * __restrict root, sched_task_type_t type, 
  387: 		unsigned char criteria, void *param);
  388: /*
  389:  * schedSignalDispatch() - Activate or Deactivate signal dispatcher
  390:  *
  391:  * @root = root task
  392:  * @on = Activate or =0 deactivate
  393:  * return: -1 error, 1 already started, 2 another thread already started or 0 ok
  394:  */
  395: int schedSignalDispatch(sched_root_task_t * __restrict root, int on);
  396: 
  397: 
  398: /*
  399:  * schedReadExt() - Add READ I/O task to scheduler queue with custom event mask
  400:  *
  401:  * @root = root task
  402:  * @func = task execution function
  403:  * @arg = 1st func argument
  404:  * @fd = fd handle
  405:  * @opt_data = Optional data
  406:  * @opt_dlen = Optional data length
  407:  * @mask = Event mask
  408:  * return: NULL error or !=NULL new queued task
  409:  */
  410: sched_task_t *schedReadExt(sched_root_task_t * __restrict root, sched_task_func_t func, void *arg, 
  411: 		int fd, void *opt_data, size_t opt_dlen, unsigned long mask);
  412: /*
  413:  * schedRead() - Add READ I/O task to scheduler queue
  414:  *
  415:  * @root = root task
  416:  * @func = task execution function
  417:  * @arg = 1st func argument
  418:  * @fd = fd handle
  419:  * @opt_data = Optional data
  420:  * @opt_dlen = Optional data length
  421:  * return: NULL error or !=NULL new queued task
  422:  */
  423: sched_task_t *schedRead(sched_root_task_t * __restrict root, sched_task_func_t func, void *arg, 
  424: 		int fd, void *opt_data, size_t opt_dlen);
  425: #define schedReadSelf(x)	schedReadExt(TASK_ROOT((x)), TASK_FUNC((x)), TASK_ARG((x)), \
  426: 		TASK_FD((x)), TASK_DATA((x)), TASK_DATLEN((x)), TASK_HARG((x)))
  427: /*
  428:  * schedWriteExt() - Add WRITE I/O task to scheduler queue with custom event mask
  429:  *
  430:  * @root = root task
  431:  * @func = task execution function
  432:  * @arg = 1st func argument
  433:  * @fd = fd handle
  434:  * @opt_data = Optional data
  435:  * @opt_dlen = Optional data length
  436:  * @mask = Event mask
  437:  * return: NULL error or !=NULL new queued task
  438:  */
  439: sched_task_t *schedWriteExt(sched_root_task_t * __restrict root, sched_task_func_t func, void *arg, 
  440: 		int fd, void *opt_data, size_t opt_dlen, unsigned long mask);
  441: /*
  442:  * schedWrite() - Add WRITE I/O task to scheduler queue
  443:  *
  444:  * @root = root task
  445:  * @func = task execution function
  446:  * @arg = 1st func argument
  447:  * @fd = fd handle
  448:  * @opt_data = Optional data
  449:  * @opt_dlen = Optional data length
  450:  * return: NULL error or !=NULL new queued task
  451:  */
  452: sched_task_t *schedWrite(sched_root_task_t * __restrict root, sched_task_func_t func, void *arg, 
  453: 		int fd, void *opt_data, size_t opt_dlen);
  454: #define schedWriteSelf(x)	schedWriteExt(TASK_ROOT((x)), TASK_FUNC((x)), TASK_ARG((x)), \
  455: 		TASK_FD((x)), TASK_DATA((x)), TASK_DATLEN((x)), TASK_HARG((x)))
  456: /*
  457:  * schedAlarm() - Add ALARM task to scheduler queue
  458:  *
  459:  * @root = root task
  460:  * @func = task execution function
  461:  * @arg = 1st func argument
  462:  * @ts = timeout argument structure, minimum alarm timer resolution is 1msec!
  463:  * @opt_data = Alarm timer ID
  464:  * @opt_dlen = Optional data length
  465:  * return: NULL error or !=NULL new queued task
  466:  */
  467: sched_task_t *schedAlarm(sched_root_task_t * __restrict root, sched_task_func_t func, void *arg, 
  468: 		struct timespec ts, void *opt_data, size_t opt_dlen);
  469: #define schedAlarmSelf(x)	schedAlarm(TASK_ROOT((x)), TASK_FUNC((x)), TASK_ARG((x)), \
  470: 		TASK_TS((x)), TASK_DATA((x)), TASK_DATLEN((x)))
  471: /*
  472:  * schedRTC() - Add RTC task to scheduler queue
  473:  *
  474:  * @root = root task
  475:  * @func = task execution function
  476:  * @arg = 1st func argument
  477:  * @ts = timeout argument structure, minimum alarm timer resolution is 1msec!
  478:  * @opt_data = Optional RTC ID
  479:  * @opt_dlen = Optional data length
  480:  * return: NULL error or !=NULL new queued task
  481:  */
  482: sched_task_t *schedRTC(sched_root_task_t * __restrict root, sched_task_func_t func, void *arg, 
  483: 		struct timespec ts, void *opt_data, size_t opt_dlen);
  484: #define schedRTCSelf(x)		schedRTC(TASK_ROOT((x)), TASK_FUNC((x)), TASK_ARG((x)), \
  485: 		TASK_TS((x)), TASK_DATA((x)), TASK_DATLEN((x)))
  486: /*
  487:  * schedNode() - Add NODE task to scheduler queue
  488:  *
  489:  * @root = root task
  490:  * @func = task execution function
  491:  * @arg = 1st func argument
  492:  * @fd = fd handle
  493:  * @opt_data = Optional data
  494:  * @opt_dlen = Optional data length
  495:  * return: NULL error or !=NULL new queued task
  496:  */
  497: sched_task_t *schedNode(sched_root_task_t * __restrict root, sched_task_func_t func, void *arg, 
  498: 		int fd, void *opt_data, size_t opt_dlen);
  499: #define schedNodeSelf(x)	schedNode(TASK_ROOT((x)), TASK_FUNC((x)), TASK_ARG((x)), \
  500: 		TASK_FD((x)), TASK_DATA((x)), TASK_DATLEN((x)))
  501: /*
  502:  * schedNode2() - Add NODE task with all events to scheduler queue
  503:  *
  504:  * @root = root task
  505:  * @func = task execution function
  506:  * @arg = 1st func argument
  507:  * @fd = fd handle
  508:  * @opt_data = Optional data
  509:  * @opt_dlen = Optional data length
  510:  * return: NULL error or !=NULL new queued task
  511:  */
  512: sched_task_t *schedNode2(sched_root_task_t * __restrict root, sched_task_func_t func, void *arg, 
  513: 		int fd, void *opt_data, size_t opt_dlen);
  514: #define schedNode2Self(x)	schedNode2(TASK_ROOT((x)), TASK_FUNC((x)), TASK_ARG((x)), \
  515: 		TASK_FD((x)), TASK_DATA((x)), TASK_DATLEN((x)))
  516: /*
  517:  * schedProc() - Add PROC task to scheduler queue
  518:  *
  519:  * @root = root task
  520:  * @func = task execution function
  521:  * @arg = 1st func argument
  522:  * @pid = PID
  523:  * @opt_data = Optional data
  524:  * @opt_dlen = Optional data length
  525:  * return: NULL error or !=NULL new queued task
  526:  */
  527: sched_task_t *schedProc(sched_root_task_t * __restrict root, sched_task_func_t func, void *arg, 
  528: 		unsigned long pid, void *opt_data, size_t opt_dlen);
  529: #define schedProcSelf(x)	schedProc(TASK_ROOT((x)), TASK_FUNC((x)), TASK_ARG((x)), \
  530: 		TASK_VAL((x)), TASK_DATA((x)), TASK_DATLEN((x)))
  531: /*
  532:  * schedSignal() - Add SIGNAL task to scheduler queue
  533:  *
  534:  * @root = root task
  535:  * @func = task execution function
  536:  * @arg = 1st func argument
  537:  * @sig = Signal
  538:  * @opt_data = Optional data
  539:  * @opt_dlen = Optional data length
  540:  * return: NULL error or !=NULL new queued task
  541:  */
  542: sched_task_t *schedSignal(sched_root_task_t * __restrict root, sched_task_func_t func, void *arg, 
  543: 		unsigned long sig, void *opt_data, size_t opt_dlen);
  544: #define schedSignalSelf(x)	schedSignal(TASK_ROOT((x)), TASK_FUNC((x)), TASK_ARG((x)), \
  545: 		TASK_VAL((x)), TASK_DATA((x)), TASK_DATLEN((x)))
  546: 
  547: #ifdef EVFILT_LIO
  548: /*
  549:  * schedAIO() - Add AIO task to scheduler queue
  550:  *
  551:  * @root = root task
  552:  * @func = task execution function
  553:  * @arg = 1st func argument
  554:  * @acb = AIO cb structure address
  555:  * @opt_data = Optional data
  556:  * @opt_dlen = Optional data length
  557:  * return: NULL error or !=NULL new queued task
  558:  */
  559: sched_task_t *schedAIO(sched_root_task_t * __restrict root, sched_task_func_t func, void *arg, 
  560: 		struct aiocb * __restrict acb, void *opt_data, size_t opt_dlen);
  561: /*
  562:  * schedAIORead() - Add AIO read task to scheduler queue
  563:  *
  564:  * @root = root task
  565:  * @func = task execution function
  566:  * @arg = 1st func argument
  567:  * @fd = file descriptor
  568:  * @buffer = Buffer
  569:  * @buflen = Buffer length
  570:  * @offset = Offset from start of file, if =-1 from current position
  571:  * return: NULL error or !=NULL new queued task
  572:  */
  573: sched_task_t *schedAIORead(sched_root_task_t * __restrict root, sched_task_func_t func, 
  574: 		void *arg, int fd, void *buffer, size_t buflen, off_t offset);
  575: /*
  576:  * schedAIOWrite() - Add AIO write task to scheduler queue
  577:  *
  578:  * @root = root task
  579:  * @func = task execution function
  580:  * @arg = 1st func argument
  581:  * @fd = file descriptor
  582:  * @buffer = Buffer
  583:  * @buflen = Buffer length
  584:  * @offset = Offset from start of file, if =-1 from current position
  585:  * return: NULL error or !=NULL new queued task
  586:  */
  587: sched_task_t *schedAIOWrite(sched_root_task_t * __restrict root, sched_task_func_t func, 
  588: 		void *arg, int fd, void *buffer, size_t buflen, off_t offset);
  589: 
  590: /*
  591:  * schedLIO() - Add AIO bulk tasks to scheduler queue
  592:  *
  593:  * @root = root task
  594:  * @func = task execution function
  595:  * @arg = 1st func argument
  596:  * @acbs = AIO cb structure addresses
  597:  * @opt_data = Optional data
  598:  * @opt_dlen = Optional data length
  599:  * return: NULL error or !=NULL new queued task
  600:  */
  601: sched_task_t *schedLIO(sched_root_task_t * __restrict root, sched_task_func_t func, void *arg, 
  602: 		struct aiocb ** __restrict acbs, void *opt_data, size_t opt_dlen);
  603: /*
  604:  * schedLIORead() - Add list of AIO read tasks to scheduler queue
  605:  *
  606:  * @root = root task
  607:  * @func = task execution function
  608:  * @arg = 1st func argument
  609:  * @fd = file descriptor
  610:  * @bufs = Buffer's list
  611:  * @nbufs = Number of Buffers
  612:  * @offset = Offset from start of file, if =-1 from current position
  613:  * return: NULL error or !=NULL new queued task
  614:  */
  615: sched_task_t *schedLIORead(sched_root_task_t * __restrict root, sched_task_func_t func, 
  616: 		void *arg, int fd, struct iovec *bufs, size_t nbufs, off_t offset);
  617: /*
  618:  * schedLIOWrite() - Add list of AIO write tasks to scheduler queue
  619:  *
  620:  * @root = root task
  621:  * @func = task execution function
  622:  * @arg = 1st func argument
  623:  * @fd = file descriptor
  624:  * @bufs = Buffer's list
  625:  * @nbufs = Number of Buffers
  626:  * @offset = Offset from start of file, if =-1 from current position
  627:  * return: NULL error or !=NULL new queued task
  628:  */
  629: sched_task_t *schedLIOWrite(sched_root_task_t * __restrict root, sched_task_func_t func, 
  630: 		void *arg, int fd, struct iovec *bufs, size_t nbufs, off_t offset);
  631: #endif	/* EVFILT_LIO */
  632: 
  633: /*
  634:  * schedUser() - Add trigger USER task to scheduler queue
  635:  *
  636:  * @root = root task
  637:  * @func = task execution function
  638:  * @arg = 1st func argument
  639:  * @id = Trigger ID
  640:  * @opt_data = Optional data
  641:  * @opt_dlen = Optional user's trigger flags
  642:  * return: NULL error or !=NULL new queued task
  643:  */
  644: sched_task_t *schedUser(sched_root_task_t * __restrict root, sched_task_func_t func, void *arg, 
  645: 		unsigned long id, void *opt_data, size_t opt_dlen);
  646: #define schedUserSelf(x)	schedUser(TASK_ROOT((x)), TASK_FUNC((x)), TASK_ARG((x)), \
  647: 		TASK_VAL((x)), TASK_DATA((x)), TASK_DATLEN((x)))
  648: /*
  649:  * schedTrigger() - Triggering USER task
  650:  *
  651:  * @task = task
  652:  * return: -1 error or 0 ok
  653:  */
  654: int schedTrigger(sched_task_t * __restrict task);
  655: 
  656: /*
  657:  * schedTimer() - Add TIMER task to scheduler queue
  658:  *
  659:  * @root = root task
  660:  * @func = task execution function
  661:  * @arg = 1st func argument
  662:  * @ts = timeout argument structure
  663:  * @opt_data = Optional data
  664:  * @opt_dlen = Optional data length
  665:  * return: NULL error or !=NULL new queued task
  666:  */
  667: sched_task_t *schedTimer(sched_root_task_t * __restrict root, sched_task_func_t func, void *arg, 
  668: 		struct timespec ts, void *opt_data, size_t opt_dlen);
  669: /*
  670:  * schedEvent() - Add EVENT task to scheduler queue
  671:  *
  672:  * @root = root task
  673:  * @func = task execution function
  674:  * @arg = 1st func argument
  675:  * @val = additional func argument
  676:  * @opt_data = Optional data
  677:  * @opt_dlen = Optional data length
  678:  * return: NULL error or !=NULL new queued task
  679:  */
  680: sched_task_t *schedEvent(sched_root_task_t * __restrict root, sched_task_func_t func, void *arg, 
  681: 		unsigned long val, void *opt_data, size_t opt_dlen);
  682: #define schedEventSelf(x)	schedEvent(TASK_ROOT((x)), TASK_FUNC((x)), TASK_ARG((x)), \
  683: 		TASK_VAL((x)), TASK_DATA((x)), TASK_DATLEN((x)))
  684: /*
  685:  * schedTask() - Add regular task to scheduler queue
  686:  *
  687:  * @root = root task
  688:  * @func = task execution function
  689:  * @arg = 1st func argument
  690:  * @prio = regular task priority, 0 is hi priority for regular tasks
  691:  * @opt_data = Optional data
  692:  * @opt_dlen = Optional data length
  693:  * return: NULL error or !=NULL new queued task
  694:  */
  695: sched_task_t *schedTask(sched_root_task_t * __restrict root, sched_task_func_t func, void *arg, 
  696: 		unsigned long prio, void *opt_data, size_t opt_dlen);
  697: #define schedTaskSelf(x)	schedTask(TASK_ROOT((x)), TASK_FUNC((x)), TASK_ARG((x)), \
  698: 		TASK_VAL((x)), TASK_DATA((x)), TASK_DATLEN((x)))
  699: /*
  700:  * schedSuspend() - Add Suspended task to scheduler queue
  701:  *
  702:  * @root = root task
  703:  * @func = task execution function
  704:  * @arg = 1st func argument
  705:  * @id = Trigger ID
  706:  * @opt_data = Optional data
  707:  * @opt_dlen = Optional user's trigger flags
  708:  * return: NULL error or !=NULL new queued task
  709:  */
  710: sched_task_t *schedSuspend(sched_root_task_t * __restrict root, sched_task_func_t func, void *arg, 
  711: 		unsigned long id, void *opt_data, size_t opt_dlen);
  712: #define schedSuspendSelf(x)	schedUser(TASK_ROOT((x)), TASK_FUNC((x)), TASK_ARG((x)), \
  713: 		TASK_VAL((x)), TASK_DATA((x)), TASK_DATLEN((x)))
  714: /*
  715:  * schedResumeby() - Resume suspended task
  716:  *
  717:  * @root = root task
  718:  * @criteria = find task by criteria 
  719:  * 	[ CRITERIA_ANY|CRITERIA_ID|CRITERIA_VAL|CRITERIA_DATA ]
  720:  * @param = search parameter (sched_task_t *task| unsigned long id)
  721:  * return: -1 error or 0 resumed ok
  722:  */
  723: int schedResumeby(sched_root_task_t * __restrict root, unsigned char criteria, void *param);
  724: 
  725: /*
  726:  * schedCallOnce() - Call once from scheduler
  727:  *
  728:  * @root = root task
  729:  * @func = task execution function
  730:  * @arg = 1st func argument
  731:  * @val = additional func argument
  732:  * @opt_data = Optional data
  733:  * @opt_dlen = Optional data length
  734:  * return: return value from called func
  735:  */
  736: sched_task_t *schedCallOnce(sched_root_task_t * __restrict root, sched_task_func_t func, void *arg, 
  737: 		unsigned long val, void *opt_data, size_t opt_dlen);
  738: #define schedCallAgain(x)	schedCallOnce(TASK_ROOT((x)), TASK_FUNC((x)), TASK_ARG((x)), \
  739: 		TASK_VAL((x)), TASK_DATA((x)), TASK_DATLEN((x)))
  740: 
  741: /*
  742:  * schedThread() - Add thread task to scheduler queue
  743:  *
  744:  * @root = root task
  745:  * @func = task execution function
  746:  * @arg = 1st func argument
  747:  * @ss = stack size
  748:  * @opt_data = Optional data
  749:  * @opt_dlen = Optional data length
  750:  * return: NULL error or !=NULL new queued task
  751:  */
  752: sched_task_t *schedThread(sched_root_task_t * __restrict root, sched_task_func_t func, void *arg, 
  753: 		size_t ss, void *opt_data, size_t opt_dlen);
  754: #define schedThreadSelf(x)	schedThread(TASK_ROOT((x)), TASK_FUNC((x)), TASK_ARG((x)), \
  755: 		(size_t) TASK_FLAG((x)), TASK_DATA((x)), TASK_DATLEN((x)))
  756: /*
  757:  * sched_taskExit() - Exit routine for scheduler task, explicit required for thread tasks
  758:  *
  759:  * @task = current task
  760:  * @retcode = return code
  761:  * return: return code
  762:  */
  763: void *sched_taskExit(sched_task_t *task, intptr_t retcode);
  764: /*
  765:  * taskExit() - Exit helper for scheduler task
  766:  *
  767:  * @t = current executed task
  768:  * @x = exit value for task
  769:  * return: none
  770:  */
  771: #define taskExit(t, x)		return sched_taskExit((t), (intptr_t) (x))
  772: 
  773: #ifdef __cplusplus
  774: }
  775: #endif
  776: 
  777: #endif

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>