📄 ndet_s_death.c
字号:
#ifndef lint#ifdef sccsstatic char sccsid[] = "@(#)ndet_s_death.c 1.1 92/07/30 Copyr 1985 Sun Micro";#endif#endif/* * Copyright (c) 1985 by Sun Microsystems, Inc. *//* * Ndet_s_destroy.c - Implement the notify_set_destroy_func interface. */#include <sunwindow/ntfy.h>#include <sunwindow/ndet.h>#include <sunwindow/ndis.h>#include <sunwindow/nint.h>#include <signal.h>extern Notify_funcnotify_set_destroy_func(nclient, func) Notify_client nclient; Notify_func func;{ Notify_func old_func = NOTIFY_FUNC_NULL; register NTFY_CLIENT *client; NTFY_CONDITION *condition; NTFY_BEGIN_CRITICAL; /* Find/create client that corresponds to nclient */ if ((client = ntfy_new_nclient(&ndet_clients, nclient, &ndet_client_latest)) == NTFY_CLIENT_NULL) goto Done; /* Find/create condition */ if ((condition = ntfy_new_condition(&(client->conditions), NTFY_DESTROY, &(client->condition_latest), NTFY_DATA_NULL, NTFY_IGNORE_DATA)) == NTFY_CONDITION_NULL) goto Done; /* Exchange functions */ old_func = nint_set_func(condition, func); /* Remove condition if func is null */ if (func == NOTIFY_FUNC_NULL) { ndis_flush_condition(nclient, NTFY_DESTROY, NTFY_DATA_NULL, NTFY_IGNORE_DATA); ntfy_unset_condition(&ndet_clients, client, condition, &ndet_client_latest, NTFY_NDET); } else /* Make sure we are catching SIGTERM before return */ ndet_enable_sig(SIGTERM); /* * Have notifier check for SIGTERM changes next time around loop. * Will notice and adjust signal handling at this time. */ ndet_flags |= NDET_DESTROY_CHANGE;Done: NTFY_END_CRITICAL; return(old_func);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -