diff options
| author | Donald Sharp <sharpd@nvidia.com> | 2022-12-11 07:51:16 -0500 | 
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2023-03-24 08:32:17 -0400 | 
| commit | de2754be3a2658363828eeb3a83579ad3bad0f99 (patch) | |
| tree | 425608f8acab16eb4914148f8262db241dd82edf /ldpd | |
| parent | 2ccccdf5d0b5912afab9d5aad184013efc30fb48 (diff) | |
*: Convert thread_fetch and thread_call to event_fetch and event_call
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'ldpd')
| -rw-r--r-- | ldpd/lde.c | 4 | ||||
| -rw-r--r-- | ldpd/ldpe.c | 4 | 
2 files changed, 4 insertions, 4 deletions
diff --git a/ldpd/lde.c b/ldpd/lde.c index a84c6635da..78205794b0 100644 --- a/ldpd/lde.c +++ b/ldpd/lde.c @@ -146,8 +146,8 @@ lde(void)  	ldeconf = config_new_empty();  	struct event thread; -	while (thread_fetch(master, &thread)) -		thread_call(&thread); +	while (event_fetch(master, &thread)) +		event_call(&thread);  	/* NOTREACHED */  	return; diff --git a/ldpd/ldpe.c b/ldpd/ldpe.c index 68f6bc8bc3..2e6acd8d05 100644 --- a/ldpd/ldpe.c +++ b/ldpd/ldpe.c @@ -123,8 +123,8 @@ ldpe(void)  	leconf = config_new_empty();  	struct event thread; -	while (thread_fetch(master, &thread)) -		thread_call(&thread); +	while (event_fetch(master, &thread)) +		event_call(&thread);  	/* NOTREACHED */  	return;  | 
