- bug fixes

SKIPPED:
	psi/haakedriv.c
This commit is contained in:
zolliker
2010-02-01 11:29:46 +00:00
parent 820db0b52a
commit 3e8938e986
4 changed files with 26 additions and 23 deletions

View File

@ -77,7 +77,7 @@ void DevDisconnect(DevSer * devser);
* after the action has finished, i.e. when hdl returned NULL)
* or NULL if no kill function is needed.
* \return 1 when this was a new action, 0 when an action was overwritten
* in the second case the actionData's kill Function is called
* in the second case the actionData's kill Function is immediately called
*/
int DevQueue(DevSer * devser, void *actionData, DevPrio prio,
DevActionHandler * hdl, DevActionMatch * matchFunc,
@ -95,7 +95,7 @@ int DevQueue(DevSer * devser, void *actionData, DevPrio prio,
* \param matchFunc a match function with two arguments of the same type
* \param killFunc the action data kill function or NULL if no kill function is needed.
* \return 1 when this was a new action, 0 when an action was overwritten
* in the second case the actionData's kill Function is called
* in the second case the actionData's kill Function is immediately called
*/
int DevSchedule(DevSer * devser, void *actionData,
DevPrio prio, double interval,