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 /* 21da2e3ebdSchin * Ksh - AT&T Labs 22da2e3ebdSchin * Written by David Korn 23da2e3ebdSchin * This file defines all the read/write shell global variables 24da2e3ebdSchin */ 25da2e3ebdSchin 26da2e3ebdSchin #include "defs.h" 27da2e3ebdSchin #include "jobs.h" 28da2e3ebdSchin #include "shlex.h" 29da2e3ebdSchin #include "edit.h" 30da2e3ebdSchin #include "timeout.h" 31da2e3ebdSchin 327c2fbfb3SApril Chin Shell_t sh = {0}; 33da2e3ebdSchin #ifdef __IMPORT__ 347c2fbfb3SApril Chin Shell_t *_imp__sh = &sh; 35da2e3ebdSchin #endif 36da2e3ebdSchin 37da2e3ebdSchin Dtdisc_t _Nvdisc = 38da2e3ebdSchin { 39da2e3ebdSchin offsetof(Namval_t,nvname), -1 , 0, 0, 0, nv_compare 40da2e3ebdSchin }; 41da2e3ebdSchin 42da2e3ebdSchin /* reserve room for writable state table */ 43da2e3ebdSchin char *sh_lexstates[ST_NONE] = {0}; 44da2e3ebdSchin 45da2e3ebdSchin struct jobs job = {0}; 46da2e3ebdSchin int32_t sh_mailchk = 600; 47da2e3ebdSchin 48