71f53a2f62
(init_cygheap): Inherit locale field via mini_cygheap. * cygheap.cc (cygheap_at_start): Define new variable. (cygheap): Initialize as cygheap_at_start so that locale information is always available. (cygheap_init): Initialize cygheap iff it is set to cygheap_at_start. * shared_info.h (memory_init): Accommodate argument change. * memory.cc (memory_init): Accept an argument indicating whether cygheap should be initialized or not. * dcrt0.cc (child_info_fork::handle_fork): Pass false to memory_init(). (child_info_spawn::handle_spawn): Ditto. (dll_crt0_0): Pass true to memory_init when not forking or execing. * cygheap.h (cygheap_types::HEAP_2_DLL): New enum. * dll_init.h (dll): Remove unused namelen field. (dll_list::load_after_fork): Accommodate change in arguments. * dll_init.cc (dll_list::alloc): Allocate dll information in the cygwin heap. (dll_list::detach): Free dll information from the cygwin heap. (dll_list::load_after_fork): Use dll information in the cygwin heap directly rather than querying parent. * fork.cc (frok::first_dll): Delete. (frok::child): Don't report on first_dll. Don't pass it to load_on_fork. (frok::parent): Don't set first_dll. (fork): Ditto.
109 lines
2.7 KiB
C++
109 lines
2.7 KiB
C++
/* shared_info.h: shared info for cygwin
|
|
|
|
Copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2008, 2009 Red Hat, Inc.
|
|
|
|
This file is part of Cygwin.
|
|
|
|
This software is a copyrighted work licensed under the terms of the
|
|
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
details. */
|
|
|
|
#include "tty.h"
|
|
#include "security.h"
|
|
#include "mtinfo.h"
|
|
#include "limits.h"
|
|
#include "mount.h"
|
|
|
|
class user_info
|
|
{
|
|
public:
|
|
DWORD version;
|
|
DWORD cb;
|
|
bool warned_msdos;
|
|
mount_info mountinfo;
|
|
};
|
|
/******** Shared Info ********/
|
|
/* Data accessible to all tasks */
|
|
|
|
#define SHARED_VERSION (unsigned)(cygwin_version.api_major << 8 | \
|
|
cygwin_version.api_minor)
|
|
#define SHARED_VERSION_MAGIC CYGWIN_VERSION_MAGIC (SHARED_MAGIC, SHARED_VERSION)
|
|
|
|
#define SHARED_INFO_CB 39328
|
|
|
|
#define CURR_SHARED_MAGIC 0x22f9ff0bU
|
|
|
|
#define USER_VERSION 1 // increment when mount table changes and
|
|
#define USER_VERSION_MAGIC CYGWIN_VERSION_MAGIC (USER_MAGIC, USER_VERSION)
|
|
#define CURR_USER_MAGIC 0xb2232e71U
|
|
|
|
/* NOTE: Do not make gratuitous changes to the names or organization of the
|
|
below class. The layout is checksummed to determine compatibility between
|
|
different cygwin versions. */
|
|
class shared_info
|
|
{
|
|
DWORD version;
|
|
DWORD cb;
|
|
public:
|
|
unsigned heap_chunk;
|
|
bool heap_slop_inited;
|
|
unsigned heap_slop;
|
|
DWORD sys_mount_table_counter;
|
|
tty_list tty;
|
|
LONG last_used_bindresvport;
|
|
WCHAR installation_root[PATH_MAX];
|
|
DWORD obcaseinsensitive;
|
|
mtinfo mt;
|
|
|
|
void initialize ();
|
|
void init_installation_root ();
|
|
void init_obcaseinsensitive ();
|
|
unsigned heap_chunk_size ();
|
|
unsigned heap_slop_size ();
|
|
};
|
|
|
|
extern shared_info *cygwin_shared;
|
|
extern user_info *user_shared;
|
|
#define mount_table (&(user_shared->mountinfo))
|
|
extern HANDLE cygwin_user_h;
|
|
|
|
enum shared_locations
|
|
{
|
|
SH_CYGWIN_SHARED,
|
|
SH_USER_SHARED,
|
|
SH_SHARED_CONSOLE,
|
|
SH_MYSELF,
|
|
SH_TOTAL_SIZE,
|
|
SH_JUSTCREATE,
|
|
SH_JUSTOPEN
|
|
|
|
};
|
|
|
|
void memory_init (bool) __attribute__ ((regparm(1)));
|
|
void __stdcall shared_destroy ();
|
|
|
|
#define shared_align_past(p) \
|
|
((char *) (system_info.dwAllocationGranularity * \
|
|
(((DWORD) ((p) + 1) + system_info.dwAllocationGranularity - 1) / \
|
|
system_info.dwAllocationGranularity)))
|
|
|
|
#ifdef _FHANDLER_H_
|
|
struct console_state
|
|
{
|
|
tty_min tty_min_state;
|
|
dev_console dev_state;
|
|
};
|
|
#endif
|
|
|
|
HANDLE get_shared_parent_dir ();
|
|
HANDLE get_session_parent_dir ();
|
|
char *__stdcall shared_name (char *, const char *, int);
|
|
WCHAR *__stdcall shared_name (WCHAR *, const WCHAR *, int);
|
|
void *__stdcall open_shared (const WCHAR *name, int n, HANDLE &shared_h,
|
|
DWORD size, shared_locations&,
|
|
PSECURITY_ATTRIBUTES psa = &sec_all,
|
|
DWORD access = FILE_MAP_READ | FILE_MAP_WRITE);
|
|
extern void user_shared_create (bool reinit);
|
|
extern void user_shared_initialize ();
|
|
|