23 lines
502 B
C
23 lines
502 B
C
#pragma once
|
|
typedef struct heart HEART;
|
|
typedef struct heart * LPHEART;
|
|
|
|
typedef void (*HEARTFUNC) (LPHEART heart, int pulse);
|
|
|
|
struct heart
|
|
{
|
|
HEARTFUNC func;
|
|
|
|
struct timeval before_sleep;
|
|
struct timeval opt_time;
|
|
struct timeval last_time;
|
|
|
|
int passes_per_sec;
|
|
int pulse;
|
|
};
|
|
|
|
LPHEART heart_new(int opt_usec, HEARTFUNC func);
|
|
void heart_delete(LPHEART ht);
|
|
int heart_idle(LPHEART ht); // 몇 pulse가 지났나 리턴한다.
|
|
void heart_beat(LPHEART ht, int pulses);
|