File: nint_copy.c

package info (click to toggle)
xview 3.2p1.4-28.1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 26,680 kB
  • ctags: 34,403
  • sloc: ansic: 241,397; yacc: 1,435; sh: 1,086; makefile: 148; lex: 76; perl: 54; asm: 50; cpp: 15
file content (39 lines) | stat: -rw-r--r-- 1,052 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#ifndef	lint
#ifdef sccs
static char     sccsid[] = "@(#)nint_copy.c 20.14 93/06/28 Copyr 1985 Sun Micro";
#endif
#endif

/*
 *	(c) Copyright 1989 Sun Microsystems, Inc. Sun design patents 
 *	pending in the U.S. and foreign countries. See LEGAL NOTICE 
 *	file for terms of the license.
 */

/*
 * Nint_interpose.c - Implement the nint_interpose_func private interface.
 */

#include <xview_private/ntfy.h>
#include <xview_private/ndet.h>
#include <xview_private/nint.h>
#include <xview_private/portable.h>
#ifdef SVR4 
#include <stdlib.h> 
#endif /* SVR4 */

pkg_private     Notify_error
nint_copy_callout(new_cond, old_cond)
    NTFY_CONDITION *new_cond;
    NTFY_CONDITION *old_cond;
{
    if (old_cond->func_count > 1) {
	if ((new_cond->callout.functions = ntfy_alloc_functions()) ==
	    NTFY_FUNC_PTR_NULL)
	    return (notify_errno);
	XV_BCOPY((caddr_t) old_cond->callout.functions,
	      (caddr_t) new_cond->callout.functions, sizeof(NTFY_NODE));
    } else
	new_cond->callout.function = old_cond->callout.function;
    return (NOTIFY_OK);
}