tags:

views:

102

answers:

1

I'm looking for a cross-platform library in C/C++ which can schedule jobs, function calls, etc. It would be nice if it is closer to Java Quartz. I would prefer BSD style licenses, LGPL would be okay too.

+1  A: 

Libevent: http://www.monkey.org/~provos/libevent/ is probably too heavyweight for your use case, but you can decide for yourself if it works for you.

Edit: This is more about scheduling functions after certain timeouts within a program. Looking at Quartz, it appears to be broader. So I doubt if libevent is what you are looking for.

Sanketh I