~vcs-imports/qemu/git

« back to all changes in this revision

Viewing changes to qemu-timer.h

  • Committer: Blue Swirl
  • Date: 2009-08-31 15:14:40 UTC
  • Revision ID: git-v1:528e93a9787ccfc59582a44035f5f342caf5b84f
Fix breakage due to __thread

Thread-local storage is not supported on all hosts.

Signed-off-by: Blue Swirl <blauwirbel@gmail.com>

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
void qemu_del_timer(QEMUTimer *ts);
25
25
void qemu_mod_timer(QEMUTimer *ts, int64_t expire_time);
26
26
int qemu_timer_pending(QEMUTimer *ts);
 
27
int qemu_timer_expired(QEMUTimer *timer_head, int64_t current_time);
27
28
 
28
29
extern int64_t ticks_per_sec;
29
30