* pinfo.cc (codepage_init): Move function.
* environ.cc (codepage_init): To here. * exceptoins.cc (SIG_NONMASKABLE): Remove SIGCONT from consideration since it is supposed to be maskable. * signal.cc (sigaction): Ditto. * sigproc.cc (wait_sig): Ditto. * winsup.h: Eliminate global declaration of codepage_init.
This commit is contained in:
		@@ -1,6 +1,6 @@
 | 
			
		||||
/* dll_main.cc: Provide the DllMain stub that the user can override.
 | 
			
		||||
 | 
			
		||||
   Copyright 1998, 2000 Cygnus Solutions.
 | 
			
		||||
   Copyright 1998, 2000, 2001 Red Hat, Inc.
 | 
			
		||||
 | 
			
		||||
This software is a copyrighted work licensed under the terms of the
 | 
			
		||||
Cygwin license.  Please consult the file "CYGWIN_LICENSE" for
 | 
			
		||||
@@ -15,13 +15,13 @@ details. */
 | 
			
		||||
 | 
			
		||||
extern "C"
 | 
			
		||||
BOOL APIENTRY DllMain (HINSTANCE hInst, DWORD reason,
 | 
			
		||||
                       LPVOID reserved /* Not used. */ );
 | 
			
		||||
                       LPVOID reserved /* Not used. */);
 | 
			
		||||
 | 
			
		||||
BOOL APIENTRY
 | 
			
		||||
DllMain (
 | 
			
		||||
	 HINSTANCE hInst /* Library instance handle. */ ,
 | 
			
		||||
	 DWORD reason /* Reason this function is being called. */ ,
 | 
			
		||||
	 LPVOID reserved /* Not used. */ )
 | 
			
		||||
	 LPVOID reserved /* Not used. */)
 | 
			
		||||
{
 | 
			
		||||
  switch (reason)
 | 
			
		||||
    {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user