diff options
| author | Donald Sharp <sharpd@nvidia.com> | 2022-12-25 10:26:52 -0500 | 
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2023-03-24 08:32:17 -0400 | 
| commit | e16d030c65ca97b1ba68b93ada93b1d4edde59d3 (patch) | |
| tree | e3a57a2e2887a899cad71c0640047b2b2409b5fa /ospfclient | |
| parent | 70d4d90c82f3fb4eb552438422afb79e29a4dca0 (diff) | |
*: Convert THREAD_XXX macros to EVENT_XXX macros
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'ospfclient')
| -rw-r--r-- | ospfclient/ospfclient.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/ospfclient/ospfclient.c b/ospfclient/ospfclient.c index e9f5b82d1d..d3ba642d72 100644 --- a/ospfclient/ospfclient.c +++ b/ospfclient/ospfclient.c @@ -75,7 +75,7 @@ static void lsa_delete(struct event *t)  	struct in_addr area_id;  	int rc; -	oclient = THREAD_ARG(t); +	oclient = EVENT_ARG(t);  	rc = inet_aton(args[6], &area_id);  	if (rc <= 0) { @@ -106,7 +106,7 @@ static void lsa_inject(struct event *t)  	static uint32_t counter = 1; /* Incremented each time invoked */  	int rc; -	cl = THREAD_ARG(t); +	cl = EVENT_ARG(t);  	rc = inet_aton(args[5], &ifaddr);  	if (rc <= 0) { @@ -146,8 +146,8 @@ static void lsa_read(struct event *thread)  	printf("lsa_read called\n"); -	oclient = THREAD_ARG(thread); -	fd = THREAD_FD(thread); +	oclient = EVENT_ARG(thread); +	fd = EVENT_FD(thread);  	/* Handle asynchronous message */  	ret = ospf_apiclient_handle_async(oclient);  | 
