Mercurial > pidgin.yaz
view pidgin/plugins/crazychat/util.h @ 28324:a8b61c00ceda
propagate from branch 'im.pidgin.pidgin' (head ae0850eb3d14d75586cd0578668606b34c38fad1)
to branch 'im.pidgin.cpw.darkrain42.2.6.1' (head 625ec18a824e84da8f5d20d9c290aaada70fa1a3)
author | John Bailey <rekkanoryo@rekkanoryo.org> |
---|---|
date | Sat, 01 Aug 2009 15:50:06 +0000 |
parents | 32c366eeeb99 |
children |
line wrap: on
line source
#ifndef __UTIL_H__ #define __UTIL_H__ #include <debug.h> #define SET_TIME(x) \ do { \ assert(!gettimeofday((x), NULL)); \ } while(0) #define SET_TIMEOUT(timespec, given_timeout) /* timeout is in ms */ \ do { \ struct timeval* curr = (struct timeval*)(timespec); \ unsigned int tout; \ if (given_timeout > 100) { \ tout = given_timeout; \ } else { \ tout = 100; \ } \ SET_TIME(curr); \ curr->tv_sec += (tout / 1000); \ curr->tv_usec /= 1000; /* set to ms */ \ curr->tv_usec += (tout % 1000); \ curr->tv_sec += (curr->tv_usec / 1000); \ curr->tv_usec = (curr->tv_usec % 1000); \ curr->tv_usec *= 1000000; \ } while (0) #endif /* -- gcc specific vararg macro support ... but its so nice! -- */ #ifdef _DEBUG_ #define Debug(x, args...) \ do { \ printf(x, ## args); \ purple_debug(PURPLE_DEBUG_INFO, "crazychat", x, ## args); \ } while (0) #else #define Debug(x, args...) do{}while(0) #endif