083abe5428
muto. Use this argument to construct static storage. * cygheap.cc (cygheap_init): Reflect above change. * exceptions.cc (events_init): Ditto. * malloc.cc (malloc_init): Ditto. * path.cc (cwdstuff::init): Ditto. * cygheap.h (cwdstuff): Change name of lock element to make it less generic. * path.cc (cwdstuff::get_hash): Ditto. (cwdstuff::get_initial): Ditto. (cwdstuff::set): Ditto. (cwdstuff::get): Ditto. * sigproc.cc (proc_subproc): Ditto. * debug.cc (lock_debug): Change to method. Use method rather than macro throughout. * tty.h (tty_min::kill_pgrp): Declare new method. * fhandler_termios.cc (tty_min::kill_pgrp): New method. (fhandler_termios::line_edit): Use new method for killing process. * dcrt0.cc (do_exit): Ditto. * dtable.cc (dtable::get_debugger_info): New method for inheriting dtable info from a debugger. * tty.cc (tty_init): Attempt to grab file handle info from parent debugger, if appropriate. # dtable.cc (dtable::stdio_init): Make this a method. (dtable::init_std_file_from_handle): Don't set fd unless it's not open. (dtable::build_fhandler_from_name): Move name setting to dtable::build_fhandler. (dtable::build_fhandler): Add win32 name parameter. * dcrt0.cc (dll_crt0_1): Change to use dtable stdio_init. * dtable.h (dtable): Reflect build_fhandler parameter change. * mmap.cc (mmap_record::alloc_fh): Don't set name parameter in build_fhandler. * net.cc (fdsock): Remove set_name call since it is now handled by build_fhandler. * sigproc.cc (proc_subproc): Release muto as early as possible.
88 lines
2.6 KiB
C++
88 lines
2.6 KiB
C++
/* dtable.h: fd table definition.
|
|
|
|
Copyright 2000, 2001 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. */
|
|
|
|
/* Initial and increment values for cygwin's fd table */
|
|
#define NOFILE_INCR 32
|
|
|
|
#include "thread.h"
|
|
|
|
class suffix_info;
|
|
class dtable
|
|
{
|
|
fhandler_base **fds;
|
|
fhandler_base **fds_on_hold;
|
|
int first_fd_for_open;
|
|
int cnt_need_fixup_before;
|
|
int console_fds;
|
|
public:
|
|
size_t size;
|
|
|
|
dtable () : first_fd_for_open(3), cnt_need_fixup_before(0), console_fds(0) {}
|
|
void init () {first_fd_for_open = 3;}
|
|
|
|
void dec_need_fixup_before ()
|
|
{ if (cnt_need_fixup_before > 0) --cnt_need_fixup_before; }
|
|
void inc_need_fixup_before ()
|
|
{ cnt_need_fixup_before++; }
|
|
BOOL need_fixup_before ()
|
|
{ return cnt_need_fixup_before > 0; }
|
|
|
|
void dec_console_fds ();
|
|
void inc_console_fds ()
|
|
{ console_fds++; }
|
|
BOOL has_console_fds ()
|
|
{ return console_fds > 0; }
|
|
|
|
int vfork_child_dup ();
|
|
void vfork_parent_restore ();
|
|
void vfork_child_fixup ();
|
|
fhandler_base *dup_worker (fhandler_base *oldfh);
|
|
int extend (int howmuch);
|
|
void fixup_before_exec (DWORD win_proc_id);
|
|
void fixup_before_fork (DWORD win_proc_id);
|
|
void fixup_after_fork (HANDLE);
|
|
fhandler_base *build_fhandler (int fd, DWORD dev, const char *unix_name,
|
|
const char *win32_name = NULL, int unit = -1);
|
|
fhandler_base *build_fhandler_from_name (int fd, const char *name, HANDLE h,
|
|
path_conv& pc,
|
|
unsigned opts = PC_SYM_FOLLOW,
|
|
suffix_info *si = NULL);
|
|
inline int not_open (int fd)
|
|
{
|
|
SetResourceLock (LOCK_FD_LIST, READ_LOCK, "not_open");
|
|
|
|
int res = fd < 0 || fd >= (int) size || fds[fd] == NULL;
|
|
|
|
ReleaseResourceLock (LOCK_FD_LIST, READ_LOCK, "not open");
|
|
return res;
|
|
}
|
|
void reset_unix_path_name (int fd, const char *name);
|
|
int find_unused_handle (int start);
|
|
int find_unused_handle () { return find_unused_handle (first_fd_for_open);}
|
|
void release (int fd);
|
|
void init_std_file_from_handle (int fd, HANDLE handle, DWORD access);
|
|
int dup2 (int oldfd, int newfd);
|
|
void fixup_after_exec (HANDLE);
|
|
inline fhandler_base *operator [](int fd) const { return fds[fd]; }
|
|
select_record *select_read (int fd, select_record *s);
|
|
select_record *select_write (int fd, select_record *s);
|
|
select_record *select_except (int fd, select_record *s);
|
|
operator fhandler_base **() {return fds;}
|
|
void stdio_init ();
|
|
void get_debugger_info ();
|
|
};
|
|
|
|
void dtable_init (void);
|
|
void stdio_init (void);
|
|
extern dtable fdtab;
|
|
|
|
extern "C" int getfdtabsize ();
|
|
extern "C" void setfdtabsize (int);
|