xref: /titanic_44/usr/src/lib/libshell/common/sh/waitevent.c (revision 3e14f97f673e8a630f076077de35afdd43dc1587)
1da2e3ebdSchin /***********************************************************************
2da2e3ebdSchin *                                                                      *
3da2e3ebdSchin *               This software is part of the ast package               *
4*3e14f97fSRoger A. Faulkner *          Copyright (c) 1982-2010 AT&T Intellectual Property          *
5da2e3ebdSchin *                      and is licensed under the                       *
6da2e3ebdSchin *                  Common Public License, Version 1.0                  *
77c2fbfb3SApril Chin *                    by AT&T Intellectual Property                     *
8da2e3ebdSchin *                                                                      *
9da2e3ebdSchin *                A copy of the License is available at                 *
10da2e3ebdSchin *            http://www.opensource.org/licenses/cpl1.0.txt             *
11da2e3ebdSchin *         (with md5 checksum 059e8cd6165cb4c31e351f2b69388fd9)         *
12da2e3ebdSchin *                                                                      *
13da2e3ebdSchin *              Information and Software Systems Research               *
14da2e3ebdSchin *                            AT&T Research                             *
15da2e3ebdSchin *                           Florham Park NJ                            *
16da2e3ebdSchin *                                                                      *
17da2e3ebdSchin *                  David Korn <dgk@research.att.com>                   *
18da2e3ebdSchin *                                                                      *
19da2e3ebdSchin ***********************************************************************/
20da2e3ebdSchin #pragma prototyped
21da2e3ebdSchin 
22da2e3ebdSchin #include	"defs.h"
23da2e3ebdSchin /*
24da2e3ebdSchin  *  This installs a hook to allow the processing of events when
25da2e3ebdSchin  *  the shell is waiting for input and when the shell is
26da2e3ebdSchin  *  waiting for job completion.
27da2e3ebdSchin  *  The previous waitevent hook function is returned
28da2e3ebdSchin  */
29da2e3ebdSchin 
30da2e3ebdSchin 
sh_waitnotify(int (* newevent)(int,long,int))31da2e3ebdSchin void	*sh_waitnotify(int(*newevent)(int,long,int))
32da2e3ebdSchin {
33da2e3ebdSchin 	int (*old)(int,long,int);
34da2e3ebdSchin 	old = sh.waitevent;
35da2e3ebdSchin 	sh.waitevent = newevent;
36da2e3ebdSchin 	return((void*)old);
37da2e3ebdSchin }
38da2e3ebdSchin 
39da2e3ebdSchin #if __OBSOLETE__ < 20080101
40da2e3ebdSchin /*
41da2e3ebdSchin  * this used to be a private symbol
42da2e3ebdSchin  * retain the old name for a bit for a smooth transition
43da2e3ebdSchin  */
44da2e3ebdSchin 
45da2e3ebdSchin #if defined(__EXPORT__)
46da2e3ebdSchin #define extern		__EXPORT__
47da2e3ebdSchin #endif
48da2e3ebdSchin 
_sh_waitnotify(int (* newevent)(int,long,int))49da2e3ebdSchin extern void	*_sh_waitnotify(int(*newevent)(int,long,int))
50da2e3ebdSchin {
51da2e3ebdSchin 	return sh_waitnotify(newevent);
52da2e3ebdSchin }
53da2e3ebdSchin 
54da2e3ebdSchin #endif
55