📄 ndet_s_sig.c
字号:
#ifndef lint#ifdef sccsstatic char sccsid[] = "@(#)ndet_s_sig.c 1.1 92/07/30 Copyr 1985 Sun Micro";#endif#endif/* * Copyright (c) 1985 by Sun Microsystems, Inc. *//* * Ndet_s_sig.c - Implement the notify_set_signal_func interface. */#include <sunwindow/ntfy.h>#include <sunwindow/ndet.h>#include <sunwindow/ndis.h>#include <sunwindow/nint.h>extern Notify_funcnotify_set_signal_func(nclient, func, sig, mode) Notify_client nclient; Notify_func func; int sig; Notify_signal_mode mode;{ Notify_func old_func = NOTIFY_FUNC_NULL; register NTFY_CLIENT *client; NTFY_CONDITION *condition; NTFY_TYPE type; NTFY_BEGIN_CRITICAL; /* * Check args & pre-allocate stack incase going to get * asynchronous event before synchronous one. */ if (ndet_check_mode(mode, &type) || ndet_check_sig(sig) || (nint_alloc_stack() != NOTIFY_OK)) goto Done; /* 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), type, &(client->condition_latest), (NTFY_DATA)sig, NTFY_USE_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, type, (NTFY_DATA)sig, NTFY_USE_DATA); ntfy_unset_condition(&ndet_clients, client, condition, &ndet_client_latest, NTFY_NDET); } else /* Make sure we are catching sig before return */ ndet_enable_sig(sig); /* * Have notifier check for signal changes next time around loop. * Will confirm signal handling at this time. */ ndet_flags |= NDET_SIGNAL_CHANGE;Done: NTFY_END_CRITICAL; return(old_func);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -