*add* interval timeouts are aligned to each other

git-svn-id: http://tint2.googlecode.com/svn/trunk@325 121b4492-b84c-0410-8b4c-0d4edfb3f3cc
This commit is contained in:
Andreas.Fink85
2010-01-07 19:51:00 +00:00
parent 35ace40a05
commit f76206c63e
4 changed files with 246 additions and 22 deletions

View File

@@ -28,8 +28,9 @@ extern struct timeval next_timeout;
struct timeout {
int interval_msec;
struct timespec timeout_expires;
void (*_callback)();
void (*_callback)(void*);
void* arg;
void* multi_timeout;
};