* Makefile.in: Build wincap.o.
* wincap.cc: New file.
* wincap.h: Ditto.
* autoload.cc: Add dynamic load statement for `CreateHardLinkA'.
* dcrt0.cc (os_being_run): Eliminated.
(osname): Ditto.
(iswinnt): Ditto.
(set_os_type): Ditto.
(dll_crt0_1): Call wincap.init() instead of set_os_type().
(_dll_crt0): Ditto.
* environ.cc (set_chunksize): New function.
(parse_thing): `forkchunk' setting now invokes function `set_chunksize'.
* fork.cc (chunksize): Eliminated. Moved to be member of wincap.
* host_dependent.h: Removed.
* syscalls.cc (_link): Try using `CreateHardLinkA' first, if available.
* cygheap.cc, dcrt0.cc, delqueue.cc, dir.cc,
environ.cc, fhandler.cc, fhandler.h, fhandler_console.cc,
fhandler_mem.cc, fork.cc, mmap.cc, net.cc, pinfo.cc, pinfo.h,
security.cc, syscalls.cc, sysconf.cc, syslog.cc, thread.cc,
times.cc, tty.cc, uinfo.cc, uname.cc, winsup.h: Use new wincap
capability check throughout.
* winsup.h: Include wincap.h. Eliminate extern declarations of
`os_being_run' and `iswinnt'. Eliminate `os_type" definition.
* include/cygwin/version.h: Bump version to 1.3.4.
2001-09-12 19:46:37 +02:00
|
|
|
/* wincap.cc -- figure out on which OS we're running. Set the
|
|
|
|
capability class to the appropriate values.
|
|
|
|
|
2010-01-22 23:31:31 +01:00
|
|
|
Copyright 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
|
2011-01-11 15:50:45 +01:00
|
|
|
2009, 2010, 2011 Red Hat, Inc.
|
* Makefile.in: Build wincap.o.
* wincap.cc: New file.
* wincap.h: Ditto.
* autoload.cc: Add dynamic load statement for `CreateHardLinkA'.
* dcrt0.cc (os_being_run): Eliminated.
(osname): Ditto.
(iswinnt): Ditto.
(set_os_type): Ditto.
(dll_crt0_1): Call wincap.init() instead of set_os_type().
(_dll_crt0): Ditto.
* environ.cc (set_chunksize): New function.
(parse_thing): `forkchunk' setting now invokes function `set_chunksize'.
* fork.cc (chunksize): Eliminated. Moved to be member of wincap.
* host_dependent.h: Removed.
* syscalls.cc (_link): Try using `CreateHardLinkA' first, if available.
* cygheap.cc, dcrt0.cc, delqueue.cc, dir.cc,
environ.cc, fhandler.cc, fhandler.h, fhandler_console.cc,
fhandler_mem.cc, fork.cc, mmap.cc, net.cc, pinfo.cc, pinfo.h,
security.cc, syscalls.cc, sysconf.cc, syslog.cc, thread.cc,
times.cc, tty.cc, uinfo.cc, uname.cc, winsup.h: Use new wincap
capability check throughout.
* winsup.h: Include wincap.h. Eliminate extern declarations of
`os_being_run' and `iswinnt'. Eliminate `os_type" definition.
* include/cygwin/version.h: Bump version to 1.3.4.
2001-09-12 19:46:37 +02:00
|
|
|
|
|
|
|
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 "winsup.h"
|
2007-07-19 10:33:22 +02:00
|
|
|
#include "security.h"
|
2008-04-28 10:47:06 +02:00
|
|
|
#include "ntdll.h"
|
* Makefile.in: Build wincap.o.
* wincap.cc: New file.
* wincap.h: Ditto.
* autoload.cc: Add dynamic load statement for `CreateHardLinkA'.
* dcrt0.cc (os_being_run): Eliminated.
(osname): Ditto.
(iswinnt): Ditto.
(set_os_type): Ditto.
(dll_crt0_1): Call wincap.init() instead of set_os_type().
(_dll_crt0): Ditto.
* environ.cc (set_chunksize): New function.
(parse_thing): `forkchunk' setting now invokes function `set_chunksize'.
* fork.cc (chunksize): Eliminated. Moved to be member of wincap.
* host_dependent.h: Removed.
* syscalls.cc (_link): Try using `CreateHardLinkA' first, if available.
* cygheap.cc, dcrt0.cc, delqueue.cc, dir.cc,
environ.cc, fhandler.cc, fhandler.h, fhandler_console.cc,
fhandler_mem.cc, fork.cc, mmap.cc, net.cc, pinfo.cc, pinfo.h,
security.cc, syscalls.cc, sysconf.cc, syslog.cc, thread.cc,
times.cc, tty.cc, uinfo.cc, uname.cc, winsup.h: Use new wincap
capability check throughout.
* winsup.h: Include wincap.h. Eliminate extern declarations of
`os_being_run' and `iswinnt'. Eliminate `os_type" definition.
* include/cygwin/version.h: Bump version to 1.3.4.
2001-09-12 19:46:37 +02:00
|
|
|
|
2008-10-23 23:00:45 +02:00
|
|
|
/* CV, 2008-10-23: All wincapc's have to be in the .cygwin_dll_common section,
|
|
|
|
same as wincap itself. Otherwise the capability changes made in
|
|
|
|
wincapc::init() are not propagated to any subsequently started process
|
|
|
|
in the same session. I'm only writing this longish comment because I'm
|
|
|
|
puzzled that this has never been noticed before... */
|
|
|
|
|
2010-09-25 22:06:21 +02:00
|
|
|
/* Minimal set of capabilities required to run Cygwin. */
|
|
|
|
#define wincap_minimal wincap_nt4sp4
|
* Makefile.in: Build wincap.o.
* wincap.cc: New file.
* wincap.h: Ditto.
* autoload.cc: Add dynamic load statement for `CreateHardLinkA'.
* dcrt0.cc (os_being_run): Eliminated.
(osname): Ditto.
(iswinnt): Ditto.
(set_os_type): Ditto.
(dll_crt0_1): Call wincap.init() instead of set_os_type().
(_dll_crt0): Ditto.
* environ.cc (set_chunksize): New function.
(parse_thing): `forkchunk' setting now invokes function `set_chunksize'.
* fork.cc (chunksize): Eliminated. Moved to be member of wincap.
* host_dependent.h: Removed.
* syscalls.cc (_link): Try using `CreateHardLinkA' first, if available.
* cygheap.cc, dcrt0.cc, delqueue.cc, dir.cc,
environ.cc, fhandler.cc, fhandler.h, fhandler_console.cc,
fhandler_mem.cc, fork.cc, mmap.cc, net.cc, pinfo.cc, pinfo.h,
security.cc, syscalls.cc, sysconf.cc, syslog.cc, thread.cc,
times.cc, tty.cc, uinfo.cc, uname.cc, winsup.h: Use new wincap
capability check throughout.
* winsup.h: Include wincap.h. Eliminate extern declarations of
`os_being_run' and `iswinnt'. Eliminate `os_type" definition.
* include/cygwin/version.h: Bump version to 1.3.4.
2001-09-12 19:46:37 +02:00
|
|
|
|
2008-10-23 23:00:45 +02:00
|
|
|
wincaps wincap_nt4sp4 __attribute__((section (".cygwin_dll_common"), shared)) = {
|
* Makefile.in: Build wincap.o.
* wincap.cc: New file.
* wincap.h: Ditto.
* autoload.cc: Add dynamic load statement for `CreateHardLinkA'.
* dcrt0.cc (os_being_run): Eliminated.
(osname): Ditto.
(iswinnt): Ditto.
(set_os_type): Ditto.
(dll_crt0_1): Call wincap.init() instead of set_os_type().
(_dll_crt0): Ditto.
* environ.cc (set_chunksize): New function.
(parse_thing): `forkchunk' setting now invokes function `set_chunksize'.
* fork.cc (chunksize): Eliminated. Moved to be member of wincap.
* host_dependent.h: Removed.
* syscalls.cc (_link): Try using `CreateHardLinkA' first, if available.
* cygheap.cc, dcrt0.cc, delqueue.cc, dir.cc,
environ.cc, fhandler.cc, fhandler.h, fhandler_console.cc,
fhandler_mem.cc, fork.cc, mmap.cc, net.cc, pinfo.cc, pinfo.h,
security.cc, syscalls.cc, sysconf.cc, syslog.cc, thread.cc,
times.cc, tty.cc, uinfo.cc, uname.cc, winsup.h: Use new wincap
capability check throughout.
* winsup.h: Include wincap.h. Eliminate extern declarations of
`os_being_run' and `iswinnt'. Eliminate `os_type" definition.
* include/cygwin/version.h: Bump version to 1.3.4.
2001-09-12 19:46:37 +02:00
|
|
|
chunksize:0,
|
2006-10-31 19:41:16 +01:00
|
|
|
heapslop:0x0,
|
2007-07-19 10:33:22 +02:00
|
|
|
max_sys_priv:SE_CHANGE_NOTIFY_PRIVILEGE,
|
2003-09-27 05:44:31 +02:00
|
|
|
is_server:false,
|
2009-11-03 10:31:45 +01:00
|
|
|
has_dacl_protect:false,
|
2007-06-21 17:57:54 +02:00
|
|
|
has_broken_if_oper_status:true,
|
* Makefile.in: Build wincap.o.
* wincap.cc: New file.
* wincap.h: Ditto.
* autoload.cc: Add dynamic load statement for `CreateHardLinkA'.
* dcrt0.cc (os_being_run): Eliminated.
(osname): Ditto.
(iswinnt): Ditto.
(set_os_type): Ditto.
(dll_crt0_1): Call wincap.init() instead of set_os_type().
(_dll_crt0): Ditto.
* environ.cc (set_chunksize): New function.
(parse_thing): `forkchunk' setting now invokes function `set_chunksize'.
* fork.cc (chunksize): Eliminated. Moved to be member of wincap.
* host_dependent.h: Removed.
* syscalls.cc (_link): Try using `CreateHardLinkA' first, if available.
* cygheap.cc, dcrt0.cc, delqueue.cc, dir.cc,
environ.cc, fhandler.cc, fhandler.h, fhandler_console.cc,
fhandler_mem.cc, fork.cc, mmap.cc, net.cc, pinfo.cc, pinfo.h,
security.cc, syscalls.cc, sysconf.cc, syslog.cc, thread.cc,
times.cc, tty.cc, uinfo.cc, uname.cc, winsup.h: Use new wincap
capability check throughout.
* winsup.h: Include wincap.h. Eliminate extern declarations of
`os_being_run' and `iswinnt'. Eliminate `os_type" definition.
* include/cygwin/version.h: Bump version to 1.3.4.
2001-09-12 19:46:37 +02:00
|
|
|
has_physical_mem_access:true,
|
2002-05-12 03:37:48 +02:00
|
|
|
has_process_io_counters:false,
|
2003-08-28 04:04:16 +02:00
|
|
|
has_terminal_services:false,
|
2007-03-29 18:37:36 +02:00
|
|
|
has_create_global_privilege:false,
|
2004-12-28 02:27:26 +01:00
|
|
|
has_ioctl_storage_get_media_types_ex:false,
|
2005-02-20 14:28:23 +01:00
|
|
|
has_extended_priority_class:false,
|
2005-06-18 03:36:18 +02:00
|
|
|
has_guid_volumes:false,
|
2005-10-18 20:51:33 +02:00
|
|
|
has_disk_ex_ioctls:false,
|
2006-01-29 13:23:44 +01:00
|
|
|
has_fileid_dirinfo:false,
|
2006-10-23 17:13:55 +02:00
|
|
|
has_buggy_restart_scan:false,
|
2006-11-08 12:38:05 +01:00
|
|
|
has_mandatory_integrity_control:false,
|
2006-11-27 13:59:59 +01:00
|
|
|
needs_logon_sid_in_sid_list:true,
|
2006-12-05 11:59:21 +01:00
|
|
|
needs_count_in_si_lpres2:false,
|
2006-12-10 17:43:30 +01:00
|
|
|
has_recycle_dot_bin:false,
|
2007-01-17 20:26:58 +01:00
|
|
|
has_gaa_prefixes:false,
|
|
|
|
has_gaa_on_link_prefix:false,
|
2007-02-01 16:54:40 +01:00
|
|
|
supports_all_posix_ai_flags:false,
|
2008-02-13 10:42:22 +01:00
|
|
|
has_restricted_stack_args:false,
|
2008-05-15 18:34:01 +02:00
|
|
|
has_transactions:false,
|
2009-01-20 12:16:59 +01:00
|
|
|
has_recvmsg:false,
|
|
|
|
has_sendmsg:false,
|
2009-01-29 21:32:08 +01:00
|
|
|
has_broken_udf:false,
|
2009-05-09 17:56:37 +02:00
|
|
|
has_console_handle_problem:false,
|
2009-06-26 17:12:06 +02:00
|
|
|
has_broken_alloc_console:false,
|
2009-07-20 17:44:55 +02:00
|
|
|
has_always_all_codepages:false,
|
2010-01-22 23:31:31 +01:00
|
|
|
has_localenames:false,
|
2010-08-30 12:39:43 +02:00
|
|
|
has_mwmo_inputavailable:false,
|
2010-09-19 22:18:36 +02:00
|
|
|
has_buggy_thread_startup:false,
|
2010-10-09 12:54:13 +02:00
|
|
|
has_fast_cwd:false,
|
2011-01-11 15:50:45 +01:00
|
|
|
has_restricted_raw_disk_access:false,
|
2011-03-01 01:19:23 +01:00
|
|
|
use_dont_resolve_hack:false,
|
2011-03-08 15:26:15 +01:00
|
|
|
use_get_sec_info_on_dirs:false,
|
2011-03-20 16:34:29 +01:00
|
|
|
supports_sse:false,
|
* Makefile.in: Build wincap.o.
* wincap.cc: New file.
* wincap.h: Ditto.
* autoload.cc: Add dynamic load statement for `CreateHardLinkA'.
* dcrt0.cc (os_being_run): Eliminated.
(osname): Ditto.
(iswinnt): Ditto.
(set_os_type): Ditto.
(dll_crt0_1): Call wincap.init() instead of set_os_type().
(_dll_crt0): Ditto.
* environ.cc (set_chunksize): New function.
(parse_thing): `forkchunk' setting now invokes function `set_chunksize'.
* fork.cc (chunksize): Eliminated. Moved to be member of wincap.
* host_dependent.h: Removed.
* syscalls.cc (_link): Try using `CreateHardLinkA' first, if available.
* cygheap.cc, dcrt0.cc, delqueue.cc, dir.cc,
environ.cc, fhandler.cc, fhandler.h, fhandler_console.cc,
fhandler_mem.cc, fork.cc, mmap.cc, net.cc, pinfo.cc, pinfo.h,
security.cc, syscalls.cc, sysconf.cc, syslog.cc, thread.cc,
times.cc, tty.cc, uinfo.cc, uname.cc, winsup.h: Use new wincap
capability check throughout.
* winsup.h: Include wincap.h. Eliminate extern declarations of
`os_being_run' and `iswinnt'. Eliminate `os_type" definition.
* include/cygwin/version.h: Bump version to 1.3.4.
2001-09-12 19:46:37 +02:00
|
|
|
};
|
|
|
|
|
2008-10-23 23:00:45 +02:00
|
|
|
wincaps wincap_2000 __attribute__((section (".cygwin_dll_common"), shared)) = {
|
* Makefile.in: Build wincap.o.
* wincap.cc: New file.
* wincap.h: Ditto.
* autoload.cc: Add dynamic load statement for `CreateHardLinkA'.
* dcrt0.cc (os_being_run): Eliminated.
(osname): Ditto.
(iswinnt): Ditto.
(set_os_type): Ditto.
(dll_crt0_1): Call wincap.init() instead of set_os_type().
(_dll_crt0): Ditto.
* environ.cc (set_chunksize): New function.
(parse_thing): `forkchunk' setting now invokes function `set_chunksize'.
* fork.cc (chunksize): Eliminated. Moved to be member of wincap.
* host_dependent.h: Removed.
* syscalls.cc (_link): Try using `CreateHardLinkA' first, if available.
* cygheap.cc, dcrt0.cc, delqueue.cc, dir.cc,
environ.cc, fhandler.cc, fhandler.h, fhandler_console.cc,
fhandler_mem.cc, fork.cc, mmap.cc, net.cc, pinfo.cc, pinfo.h,
security.cc, syscalls.cc, sysconf.cc, syslog.cc, thread.cc,
times.cc, tty.cc, uinfo.cc, uname.cc, winsup.h: Use new wincap
capability check throughout.
* winsup.h: Include wincap.h. Eliminate extern declarations of
`os_being_run' and `iswinnt'. Eliminate `os_type" definition.
* include/cygwin/version.h: Bump version to 1.3.4.
2001-09-12 19:46:37 +02:00
|
|
|
chunksize:0,
|
2006-10-31 19:41:16 +01:00
|
|
|
heapslop:0x0,
|
2007-07-19 10:33:22 +02:00
|
|
|
max_sys_priv:SE_MANAGE_VOLUME_PRIVILEGE,
|
2003-09-27 05:44:31 +02:00
|
|
|
is_server:false,
|
2009-11-03 10:31:45 +01:00
|
|
|
has_dacl_protect:true,
|
2007-06-21 17:57:54 +02:00
|
|
|
has_broken_if_oper_status:false,
|
* Makefile.in: Build wincap.o.
* wincap.cc: New file.
* wincap.h: Ditto.
* autoload.cc: Add dynamic load statement for `CreateHardLinkA'.
* dcrt0.cc (os_being_run): Eliminated.
(osname): Ditto.
(iswinnt): Ditto.
(set_os_type): Ditto.
(dll_crt0_1): Call wincap.init() instead of set_os_type().
(_dll_crt0): Ditto.
* environ.cc (set_chunksize): New function.
(parse_thing): `forkchunk' setting now invokes function `set_chunksize'.
* fork.cc (chunksize): Eliminated. Moved to be member of wincap.
* host_dependent.h: Removed.
* syscalls.cc (_link): Try using `CreateHardLinkA' first, if available.
* cygheap.cc, dcrt0.cc, delqueue.cc, dir.cc,
environ.cc, fhandler.cc, fhandler.h, fhandler_console.cc,
fhandler_mem.cc, fork.cc, mmap.cc, net.cc, pinfo.cc, pinfo.h,
security.cc, syscalls.cc, sysconf.cc, syslog.cc, thread.cc,
times.cc, tty.cc, uinfo.cc, uname.cc, winsup.h: Use new wincap
capability check throughout.
* winsup.h: Include wincap.h. Eliminate extern declarations of
`os_being_run' and `iswinnt'. Eliminate `os_type" definition.
* include/cygwin/version.h: Bump version to 1.3.4.
2001-09-12 19:46:37 +02:00
|
|
|
has_physical_mem_access:true,
|
2002-05-12 03:37:48 +02:00
|
|
|
has_process_io_counters:true,
|
2003-08-28 04:04:16 +02:00
|
|
|
has_terminal_services:true,
|
2007-03-29 18:37:36 +02:00
|
|
|
has_create_global_privilege:false,
|
2004-12-28 02:27:26 +01:00
|
|
|
has_ioctl_storage_get_media_types_ex:false,
|
2005-02-20 14:28:23 +01:00
|
|
|
has_extended_priority_class:true,
|
2005-06-18 03:36:18 +02:00
|
|
|
has_guid_volumes:true,
|
2005-10-18 20:51:33 +02:00
|
|
|
has_disk_ex_ioctls:false,
|
2006-01-29 13:23:44 +01:00
|
|
|
has_fileid_dirinfo:true,
|
2006-10-23 17:13:55 +02:00
|
|
|
has_buggy_restart_scan:true,
|
2006-11-08 12:38:05 +01:00
|
|
|
has_mandatory_integrity_control:false,
|
2006-11-27 13:59:59 +01:00
|
|
|
needs_logon_sid_in_sid_list:true,
|
2006-12-05 11:59:21 +01:00
|
|
|
needs_count_in_si_lpres2:false,
|
2006-12-10 17:43:30 +01:00
|
|
|
has_recycle_dot_bin:false,
|
2007-01-17 20:26:58 +01:00
|
|
|
has_gaa_prefixes:false,
|
|
|
|
has_gaa_on_link_prefix:false,
|
2007-02-01 16:54:40 +01:00
|
|
|
supports_all_posix_ai_flags:false,
|
2008-02-13 10:42:22 +01:00
|
|
|
has_restricted_stack_args:false,
|
2008-05-15 18:34:01 +02:00
|
|
|
has_transactions:false,
|
2009-01-20 12:16:59 +01:00
|
|
|
has_recvmsg:false,
|
|
|
|
has_sendmsg:false,
|
2009-01-29 21:32:08 +01:00
|
|
|
has_broken_udf:true,
|
2009-05-09 17:56:37 +02:00
|
|
|
has_console_handle_problem:false,
|
2009-06-26 17:12:06 +02:00
|
|
|
has_broken_alloc_console:false,
|
2009-07-20 17:44:55 +02:00
|
|
|
has_always_all_codepages:false,
|
2010-01-22 23:31:31 +01:00
|
|
|
has_localenames:false,
|
2010-08-30 12:39:43 +02:00
|
|
|
has_mwmo_inputavailable:true,
|
2010-09-19 22:18:36 +02:00
|
|
|
has_buggy_thread_startup:false,
|
2010-10-09 12:54:13 +02:00
|
|
|
has_fast_cwd:false,
|
2011-01-11 15:50:45 +01:00
|
|
|
has_restricted_raw_disk_access:false,
|
2011-03-01 01:19:23 +01:00
|
|
|
use_dont_resolve_hack:false,
|
2011-03-08 15:26:15 +01:00
|
|
|
use_get_sec_info_on_dirs:false,
|
2011-03-20 16:34:29 +01:00
|
|
|
supports_sse:true,
|
* Makefile.in: Build wincap.o.
* wincap.cc: New file.
* wincap.h: Ditto.
* autoload.cc: Add dynamic load statement for `CreateHardLinkA'.
* dcrt0.cc (os_being_run): Eliminated.
(osname): Ditto.
(iswinnt): Ditto.
(set_os_type): Ditto.
(dll_crt0_1): Call wincap.init() instead of set_os_type().
(_dll_crt0): Ditto.
* environ.cc (set_chunksize): New function.
(parse_thing): `forkchunk' setting now invokes function `set_chunksize'.
* fork.cc (chunksize): Eliminated. Moved to be member of wincap.
* host_dependent.h: Removed.
* syscalls.cc (_link): Try using `CreateHardLinkA' first, if available.
* cygheap.cc, dcrt0.cc, delqueue.cc, dir.cc,
environ.cc, fhandler.cc, fhandler.h, fhandler_console.cc,
fhandler_mem.cc, fork.cc, mmap.cc, net.cc, pinfo.cc, pinfo.h,
security.cc, syscalls.cc, sysconf.cc, syslog.cc, thread.cc,
times.cc, tty.cc, uinfo.cc, uname.cc, winsup.h: Use new wincap
capability check throughout.
* winsup.h: Include wincap.h. Eliminate extern declarations of
`os_being_run' and `iswinnt'. Eliminate `os_type" definition.
* include/cygwin/version.h: Bump version to 1.3.4.
2001-09-12 19:46:37 +02:00
|
|
|
};
|
|
|
|
|
2008-10-23 23:00:45 +02:00
|
|
|
wincaps wincap_2000sp4 __attribute__((section (".cygwin_dll_common"), shared)) = {
|
2007-07-19 10:33:22 +02:00
|
|
|
chunksize:0,
|
|
|
|
heapslop:0x0,
|
|
|
|
max_sys_priv:SE_CREATE_GLOBAL_PRIVILEGE,
|
|
|
|
is_server:false,
|
2009-11-03 10:31:45 +01:00
|
|
|
has_dacl_protect:true,
|
2007-07-19 10:33:22 +02:00
|
|
|
has_broken_if_oper_status:false,
|
|
|
|
has_physical_mem_access:true,
|
|
|
|
has_process_io_counters:true,
|
|
|
|
has_terminal_services:true,
|
|
|
|
has_create_global_privilege:true,
|
|
|
|
has_ioctl_storage_get_media_types_ex:false,
|
|
|
|
has_extended_priority_class:true,
|
|
|
|
has_guid_volumes:true,
|
|
|
|
has_disk_ex_ioctls:false,
|
|
|
|
has_fileid_dirinfo:true,
|
|
|
|
has_buggy_restart_scan:true,
|
|
|
|
has_mandatory_integrity_control:false,
|
|
|
|
needs_logon_sid_in_sid_list:true,
|
|
|
|
needs_count_in_si_lpres2:false,
|
|
|
|
has_recycle_dot_bin:false,
|
|
|
|
has_gaa_prefixes:false,
|
|
|
|
has_gaa_on_link_prefix:false,
|
|
|
|
supports_all_posix_ai_flags:false,
|
2008-02-13 10:42:22 +01:00
|
|
|
has_restricted_stack_args:false,
|
2008-05-15 18:34:01 +02:00
|
|
|
has_transactions:false,
|
2009-01-20 12:16:59 +01:00
|
|
|
has_recvmsg:false,
|
|
|
|
has_sendmsg:false,
|
2009-01-29 21:32:08 +01:00
|
|
|
has_broken_udf:true,
|
2009-05-09 17:56:37 +02:00
|
|
|
has_console_handle_problem:false,
|
2009-06-26 17:12:06 +02:00
|
|
|
has_broken_alloc_console:false,
|
2009-07-20 17:44:55 +02:00
|
|
|
has_always_all_codepages:false,
|
2010-01-22 23:31:31 +01:00
|
|
|
has_localenames:false,
|
2010-08-30 12:39:43 +02:00
|
|
|
has_mwmo_inputavailable:true,
|
2010-09-19 22:18:36 +02:00
|
|
|
has_buggy_thread_startup:false,
|
2010-10-09 12:54:13 +02:00
|
|
|
has_fast_cwd:false,
|
2011-01-11 15:50:45 +01:00
|
|
|
has_restricted_raw_disk_access:false,
|
2011-03-01 01:19:23 +01:00
|
|
|
use_dont_resolve_hack:false,
|
2011-03-08 15:26:15 +01:00
|
|
|
use_get_sec_info_on_dirs:false,
|
2011-03-20 16:34:29 +01:00
|
|
|
supports_sse:true,
|
2007-07-19 10:33:22 +02:00
|
|
|
};
|
|
|
|
|
2008-10-23 23:00:45 +02:00
|
|
|
wincaps wincap_xp __attribute__((section (".cygwin_dll_common"), shared)) = {
|
* Makefile.in: Build wincap.o.
* wincap.cc: New file.
* wincap.h: Ditto.
* autoload.cc: Add dynamic load statement for `CreateHardLinkA'.
* dcrt0.cc (os_being_run): Eliminated.
(osname): Ditto.
(iswinnt): Ditto.
(set_os_type): Ditto.
(dll_crt0_1): Call wincap.init() instead of set_os_type().
(_dll_crt0): Ditto.
* environ.cc (set_chunksize): New function.
(parse_thing): `forkchunk' setting now invokes function `set_chunksize'.
* fork.cc (chunksize): Eliminated. Moved to be member of wincap.
* host_dependent.h: Removed.
* syscalls.cc (_link): Try using `CreateHardLinkA' first, if available.
* cygheap.cc, dcrt0.cc, delqueue.cc, dir.cc,
environ.cc, fhandler.cc, fhandler.h, fhandler_console.cc,
fhandler_mem.cc, fork.cc, mmap.cc, net.cc, pinfo.cc, pinfo.h,
security.cc, syscalls.cc, sysconf.cc, syslog.cc, thread.cc,
times.cc, tty.cc, uinfo.cc, uname.cc, winsup.h: Use new wincap
capability check throughout.
* winsup.h: Include wincap.h. Eliminate extern declarations of
`os_being_run' and `iswinnt'. Eliminate `os_type" definition.
* include/cygwin/version.h: Bump version to 1.3.4.
2001-09-12 19:46:37 +02:00
|
|
|
chunksize:0,
|
2006-10-31 19:41:16 +01:00
|
|
|
heapslop:0x0,
|
2007-07-19 10:33:22 +02:00
|
|
|
max_sys_priv:SE_MANAGE_VOLUME_PRIVILEGE,
|
2003-09-27 05:44:31 +02:00
|
|
|
is_server:false,
|
2009-11-03 10:31:45 +01:00
|
|
|
has_dacl_protect:true,
|
2007-06-21 17:57:54 +02:00
|
|
|
has_broken_if_oper_status:false,
|
* Makefile.in: Build wincap.o.
* wincap.cc: New file.
* wincap.h: Ditto.
* autoload.cc: Add dynamic load statement for `CreateHardLinkA'.
* dcrt0.cc (os_being_run): Eliminated.
(osname): Ditto.
(iswinnt): Ditto.
(set_os_type): Ditto.
(dll_crt0_1): Call wincap.init() instead of set_os_type().
(_dll_crt0): Ditto.
* environ.cc (set_chunksize): New function.
(parse_thing): `forkchunk' setting now invokes function `set_chunksize'.
* fork.cc (chunksize): Eliminated. Moved to be member of wincap.
* host_dependent.h: Removed.
* syscalls.cc (_link): Try using `CreateHardLinkA' first, if available.
* cygheap.cc, dcrt0.cc, delqueue.cc, dir.cc,
environ.cc, fhandler.cc, fhandler.h, fhandler_console.cc,
fhandler_mem.cc, fork.cc, mmap.cc, net.cc, pinfo.cc, pinfo.h,
security.cc, syscalls.cc, sysconf.cc, syslog.cc, thread.cc,
times.cc, tty.cc, uinfo.cc, uname.cc, winsup.h: Use new wincap
capability check throughout.
* winsup.h: Include wincap.h. Eliminate extern declarations of
`os_being_run' and `iswinnt'. Eliminate `os_type" definition.
* include/cygwin/version.h: Bump version to 1.3.4.
2001-09-12 19:46:37 +02:00
|
|
|
has_physical_mem_access:true,
|
2002-05-12 03:37:48 +02:00
|
|
|
has_process_io_counters:true,
|
2003-08-28 04:04:16 +02:00
|
|
|
has_terminal_services:true,
|
2007-03-29 18:37:36 +02:00
|
|
|
has_create_global_privilege:false,
|
2004-12-28 02:27:26 +01:00
|
|
|
has_ioctl_storage_get_media_types_ex:true,
|
2005-02-20 14:28:23 +01:00
|
|
|
has_extended_priority_class:true,
|
2005-06-18 03:36:18 +02:00
|
|
|
has_guid_volumes:true,
|
2005-10-18 20:51:33 +02:00
|
|
|
has_disk_ex_ioctls:true,
|
2006-01-29 13:23:44 +01:00
|
|
|
has_fileid_dirinfo:true,
|
2006-10-23 17:13:55 +02:00
|
|
|
has_buggy_restart_scan:false,
|
2006-11-08 12:38:05 +01:00
|
|
|
has_mandatory_integrity_control:false,
|
2006-11-27 13:59:59 +01:00
|
|
|
needs_logon_sid_in_sid_list:false,
|
2006-12-05 11:59:21 +01:00
|
|
|
needs_count_in_si_lpres2:false,
|
2006-12-10 17:43:30 +01:00
|
|
|
has_recycle_dot_bin:false,
|
2007-07-19 10:33:22 +02:00
|
|
|
has_gaa_prefixes:false,
|
|
|
|
has_gaa_on_link_prefix:false,
|
|
|
|
supports_all_posix_ai_flags:false,
|
2008-02-13 10:42:22 +01:00
|
|
|
has_restricted_stack_args:false,
|
2008-05-15 18:34:01 +02:00
|
|
|
has_transactions:false,
|
2009-01-20 12:16:59 +01:00
|
|
|
has_recvmsg:true,
|
|
|
|
has_sendmsg:false,
|
2009-01-29 21:32:08 +01:00
|
|
|
has_broken_udf:true,
|
2009-05-09 17:56:37 +02:00
|
|
|
has_console_handle_problem:false,
|
2009-06-26 17:12:06 +02:00
|
|
|
has_broken_alloc_console:false,
|
2009-07-20 17:44:55 +02:00
|
|
|
has_always_all_codepages:false,
|
2010-01-22 23:31:31 +01:00
|
|
|
has_localenames:false,
|
2010-08-30 12:39:43 +02:00
|
|
|
has_mwmo_inputavailable:true,
|
2010-09-19 22:18:36 +02:00
|
|
|
has_buggy_thread_startup:false,
|
2010-10-09 12:54:13 +02:00
|
|
|
has_fast_cwd:false,
|
2011-01-11 15:50:45 +01:00
|
|
|
has_restricted_raw_disk_access:false,
|
2011-03-01 01:19:23 +01:00
|
|
|
use_dont_resolve_hack:true,
|
2011-03-08 15:26:15 +01:00
|
|
|
use_get_sec_info_on_dirs:true,
|
2011-03-20 16:34:29 +01:00
|
|
|
supports_sse:true,
|
2007-07-19 10:33:22 +02:00
|
|
|
};
|
|
|
|
|
2008-10-23 23:00:45 +02:00
|
|
|
wincaps wincap_xpsp1 __attribute__((section (".cygwin_dll_common"), shared)) = {
|
2007-07-19 10:33:22 +02:00
|
|
|
chunksize:0,
|
|
|
|
heapslop:0x0,
|
|
|
|
max_sys_priv:SE_MANAGE_VOLUME_PRIVILEGE,
|
|
|
|
is_server:false,
|
2009-11-03 10:31:45 +01:00
|
|
|
has_dacl_protect:true,
|
2007-07-19 10:33:22 +02:00
|
|
|
has_broken_if_oper_status:false,
|
|
|
|
has_physical_mem_access:true,
|
|
|
|
has_process_io_counters:true,
|
|
|
|
has_terminal_services:true,
|
|
|
|
has_create_global_privilege:false,
|
|
|
|
has_ioctl_storage_get_media_types_ex:true,
|
|
|
|
has_extended_priority_class:true,
|
|
|
|
has_guid_volumes:true,
|
|
|
|
has_disk_ex_ioctls:true,
|
|
|
|
has_fileid_dirinfo:true,
|
|
|
|
has_buggy_restart_scan:false,
|
|
|
|
has_mandatory_integrity_control:false,
|
|
|
|
needs_logon_sid_in_sid_list:false,
|
|
|
|
needs_count_in_si_lpres2:false,
|
|
|
|
has_recycle_dot_bin:false,
|
|
|
|
has_gaa_prefixes:true,
|
|
|
|
has_gaa_on_link_prefix:false,
|
|
|
|
supports_all_posix_ai_flags:false,
|
2008-02-13 10:42:22 +01:00
|
|
|
has_restricted_stack_args:false,
|
2008-05-15 18:34:01 +02:00
|
|
|
has_transactions:false,
|
2009-01-20 12:16:59 +01:00
|
|
|
has_recvmsg:true,
|
|
|
|
has_sendmsg:false,
|
2009-01-29 21:32:08 +01:00
|
|
|
has_broken_udf:true,
|
2009-05-09 17:56:37 +02:00
|
|
|
has_console_handle_problem:false,
|
2009-06-26 17:12:06 +02:00
|
|
|
has_broken_alloc_console:false,
|
2009-07-20 17:44:55 +02:00
|
|
|
has_always_all_codepages:false,
|
2010-01-22 23:31:31 +01:00
|
|
|
has_localenames:false,
|
2010-08-30 12:39:43 +02:00
|
|
|
has_mwmo_inputavailable:true,
|
2010-09-19 22:18:36 +02:00
|
|
|
has_buggy_thread_startup:false,
|
2010-10-09 12:54:13 +02:00
|
|
|
has_fast_cwd:false,
|
2011-01-11 15:50:45 +01:00
|
|
|
has_restricted_raw_disk_access:false,
|
2011-03-01 01:19:23 +01:00
|
|
|
use_dont_resolve_hack:true,
|
2011-03-08 15:26:15 +01:00
|
|
|
use_get_sec_info_on_dirs:true,
|
2011-03-20 16:34:29 +01:00
|
|
|
supports_sse:true,
|
2007-07-19 10:33:22 +02:00
|
|
|
};
|
|
|
|
|
2008-10-23 23:00:45 +02:00
|
|
|
wincaps wincap_xpsp2 __attribute__((section (".cygwin_dll_common"), shared)) = {
|
2007-07-19 10:33:22 +02:00
|
|
|
chunksize:0,
|
|
|
|
heapslop:0x0,
|
|
|
|
max_sys_priv:SE_CREATE_GLOBAL_PRIVILEGE,
|
|
|
|
is_server:false,
|
2009-11-03 10:31:45 +01:00
|
|
|
has_dacl_protect:true,
|
2007-07-19 10:33:22 +02:00
|
|
|
has_broken_if_oper_status:false,
|
|
|
|
has_physical_mem_access:true,
|
|
|
|
has_process_io_counters:true,
|
|
|
|
has_terminal_services:true,
|
|
|
|
has_create_global_privilege:true,
|
|
|
|
has_ioctl_storage_get_media_types_ex:true,
|
|
|
|
has_extended_priority_class:true,
|
|
|
|
has_guid_volumes:true,
|
|
|
|
has_disk_ex_ioctls:true,
|
|
|
|
has_fileid_dirinfo:true,
|
|
|
|
has_buggy_restart_scan:false,
|
|
|
|
has_mandatory_integrity_control:false,
|
|
|
|
needs_logon_sid_in_sid_list:false,
|
|
|
|
needs_count_in_si_lpres2:false,
|
|
|
|
has_recycle_dot_bin:false,
|
2007-01-21 23:54:05 +01:00
|
|
|
has_gaa_prefixes:true,
|
2007-01-17 20:26:58 +01:00
|
|
|
has_gaa_on_link_prefix:false,
|
2007-02-01 16:54:40 +01:00
|
|
|
supports_all_posix_ai_flags:false,
|
2008-02-13 10:42:22 +01:00
|
|
|
has_restricted_stack_args:false,
|
2008-05-15 18:34:01 +02:00
|
|
|
has_transactions:false,
|
2009-01-20 12:16:59 +01:00
|
|
|
has_recvmsg:true,
|
|
|
|
has_sendmsg:false,
|
2009-01-29 21:32:08 +01:00
|
|
|
has_broken_udf:true,
|
2009-05-09 17:56:37 +02:00
|
|
|
has_console_handle_problem:false,
|
2009-06-26 17:12:06 +02:00
|
|
|
has_broken_alloc_console:false,
|
2009-07-20 17:44:55 +02:00
|
|
|
has_always_all_codepages:false,
|
2010-01-22 23:31:31 +01:00
|
|
|
has_localenames:false,
|
2010-08-30 12:39:43 +02:00
|
|
|
has_mwmo_inputavailable:true,
|
2010-09-19 22:18:36 +02:00
|
|
|
has_buggy_thread_startup:false,
|
2010-10-09 12:54:13 +02:00
|
|
|
has_fast_cwd:false,
|
2011-01-11 15:50:45 +01:00
|
|
|
has_restricted_raw_disk_access:false,
|
2011-03-01 01:19:23 +01:00
|
|
|
use_dont_resolve_hack:true,
|
2011-03-08 15:26:15 +01:00
|
|
|
use_get_sec_info_on_dirs:true,
|
2011-03-20 16:34:29 +01:00
|
|
|
supports_sse:true,
|
2003-05-20 17:22:09 +02:00
|
|
|
};
|
|
|
|
|
2008-10-23 23:00:45 +02:00
|
|
|
wincaps wincap_2003 __attribute__((section (".cygwin_dll_common"), shared)) = {
|
2003-05-20 17:22:09 +02:00
|
|
|
chunksize:0,
|
2006-10-31 19:41:16 +01:00
|
|
|
heapslop:0x4,
|
2007-07-19 10:33:22 +02:00
|
|
|
max_sys_priv:SE_CREATE_GLOBAL_PRIVILEGE,
|
2003-09-27 05:44:31 +02:00
|
|
|
is_server:true,
|
2009-11-03 10:31:45 +01:00
|
|
|
has_dacl_protect:true,
|
2007-06-21 17:57:54 +02:00
|
|
|
has_broken_if_oper_status:false,
|
2006-12-06 17:33:03 +01:00
|
|
|
has_physical_mem_access:false,
|
2003-05-20 17:22:09 +02:00
|
|
|
has_process_io_counters:true,
|
2003-08-28 04:04:16 +02:00
|
|
|
has_terminal_services:true,
|
2007-03-29 18:37:36 +02:00
|
|
|
has_create_global_privilege:true,
|
2004-12-28 02:27:26 +01:00
|
|
|
has_ioctl_storage_get_media_types_ex:true,
|
2005-02-20 14:28:23 +01:00
|
|
|
has_extended_priority_class:true,
|
2005-06-18 03:36:18 +02:00
|
|
|
has_guid_volumes:true,
|
2005-10-18 20:51:33 +02:00
|
|
|
has_disk_ex_ioctls:true,
|
2006-01-29 13:23:44 +01:00
|
|
|
has_fileid_dirinfo:true,
|
2006-10-23 17:13:55 +02:00
|
|
|
has_buggy_restart_scan:false,
|
2006-11-08 12:38:05 +01:00
|
|
|
has_mandatory_integrity_control:false,
|
2006-11-27 13:59:59 +01:00
|
|
|
needs_logon_sid_in_sid_list:false,
|
2006-12-05 11:59:21 +01:00
|
|
|
needs_count_in_si_lpres2:false,
|
2006-12-10 17:43:30 +01:00
|
|
|
has_recycle_dot_bin:false,
|
2007-01-17 20:26:58 +01:00
|
|
|
has_gaa_prefixes:true,
|
|
|
|
has_gaa_on_link_prefix:false,
|
2007-02-01 16:54:40 +01:00
|
|
|
supports_all_posix_ai_flags:false,
|
2008-02-13 10:42:22 +01:00
|
|
|
has_restricted_stack_args:true,
|
2008-05-15 18:34:01 +02:00
|
|
|
has_transactions:false,
|
2009-01-20 12:16:59 +01:00
|
|
|
has_recvmsg:true,
|
|
|
|
has_sendmsg:false,
|
2009-01-29 21:32:08 +01:00
|
|
|
has_broken_udf:true,
|
2009-05-09 17:56:37 +02:00
|
|
|
has_console_handle_problem:false,
|
2009-06-26 17:12:06 +02:00
|
|
|
has_broken_alloc_console:false,
|
2009-07-20 17:44:55 +02:00
|
|
|
has_always_all_codepages:false,
|
2010-01-22 23:31:31 +01:00
|
|
|
has_localenames:false,
|
2010-08-30 12:39:43 +02:00
|
|
|
has_mwmo_inputavailable:true,
|
2010-09-19 22:18:36 +02:00
|
|
|
has_buggy_thread_startup:false,
|
2010-10-09 12:54:13 +02:00
|
|
|
has_fast_cwd:false,
|
2011-01-11 15:50:45 +01:00
|
|
|
has_restricted_raw_disk_access:false,
|
2011-03-23 22:33:36 +01:00
|
|
|
use_dont_resolve_hack:true,
|
2011-03-08 15:26:15 +01:00
|
|
|
use_get_sec_info_on_dirs:true,
|
2011-03-20 16:34:29 +01:00
|
|
|
supports_sse:true,
|
2005-09-28 21:33:18 +02:00
|
|
|
};
|
|
|
|
|
2008-10-23 23:00:45 +02:00
|
|
|
wincaps wincap_vista __attribute__((section (".cygwin_dll_common"), shared)) = {
|
2005-09-28 21:33:18 +02:00
|
|
|
chunksize:0,
|
2006-10-31 19:41:16 +01:00
|
|
|
heapslop:0x4,
|
2007-07-19 10:33:22 +02:00
|
|
|
max_sys_priv:SE_CREATE_SYMBOLIC_LINK_PRIVILEGE,
|
2007-01-17 20:26:58 +01:00
|
|
|
is_server:false,
|
2009-11-03 10:31:45 +01:00
|
|
|
has_dacl_protect:true,
|
2007-06-21 17:57:54 +02:00
|
|
|
has_broken_if_oper_status:false,
|
2006-12-06 17:33:03 +01:00
|
|
|
has_physical_mem_access:false,
|
2005-09-28 21:33:18 +02:00
|
|
|
has_process_io_counters:true,
|
|
|
|
has_terminal_services:true,
|
2007-03-29 18:37:36 +02:00
|
|
|
has_create_global_privilege:true,
|
2005-09-28 21:33:18 +02:00
|
|
|
has_ioctl_storage_get_media_types_ex:true,
|
|
|
|
has_extended_priority_class:true,
|
|
|
|
has_guid_volumes:true,
|
2005-10-18 20:51:33 +02:00
|
|
|
has_disk_ex_ioctls:true,
|
2006-01-29 13:23:44 +01:00
|
|
|
has_fileid_dirinfo:true,
|
2006-10-23 17:13:55 +02:00
|
|
|
has_buggy_restart_scan:false,
|
2006-11-08 12:38:05 +01:00
|
|
|
has_mandatory_integrity_control:true,
|
2006-11-27 13:59:59 +01:00
|
|
|
needs_logon_sid_in_sid_list:false,
|
2006-12-05 11:59:21 +01:00
|
|
|
needs_count_in_si_lpres2:true,
|
2006-12-10 17:43:30 +01:00
|
|
|
has_recycle_dot_bin:true,
|
2007-01-17 20:26:58 +01:00
|
|
|
has_gaa_prefixes:true,
|
|
|
|
has_gaa_on_link_prefix:true,
|
2007-02-01 16:54:40 +01:00
|
|
|
supports_all_posix_ai_flags:true,
|
2008-02-13 10:42:22 +01:00
|
|
|
has_restricted_stack_args:false,
|
2008-05-15 18:34:01 +02:00
|
|
|
has_transactions:true,
|
2009-01-20 12:16:59 +01:00
|
|
|
has_recvmsg:true,
|
|
|
|
has_sendmsg:true,
|
2009-01-29 21:32:08 +01:00
|
|
|
has_broken_udf:false,
|
2009-05-09 17:56:37 +02:00
|
|
|
has_console_handle_problem:false,
|
2009-06-26 17:12:06 +02:00
|
|
|
has_broken_alloc_console:false,
|
2009-07-20 17:44:55 +02:00
|
|
|
has_always_all_codepages:true,
|
2010-01-22 23:31:31 +01:00
|
|
|
has_localenames:true,
|
2010-08-30 12:39:43 +02:00
|
|
|
has_mwmo_inputavailable:true,
|
2010-09-19 22:18:36 +02:00
|
|
|
has_buggy_thread_startup:true,
|
2010-10-09 12:54:13 +02:00
|
|
|
has_fast_cwd:true,
|
2011-01-11 15:50:45 +01:00
|
|
|
has_restricted_raw_disk_access:true,
|
2011-03-01 01:19:23 +01:00
|
|
|
use_dont_resolve_hack:false,
|
2011-03-08 15:26:15 +01:00
|
|
|
use_get_sec_info_on_dirs:false,
|
2011-03-20 16:34:29 +01:00
|
|
|
supports_sse:true,
|
2009-05-09 17:56:37 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
wincaps wincap_7 __attribute__((section (".cygwin_dll_common"), shared)) = {
|
|
|
|
chunksize:0,
|
|
|
|
heapslop:0x4,
|
|
|
|
max_sys_priv:SE_CREATE_SYMBOLIC_LINK_PRIVILEGE,
|
|
|
|
is_server:false,
|
2009-11-03 10:31:45 +01:00
|
|
|
has_dacl_protect:true,
|
2009-05-09 17:56:37 +02:00
|
|
|
has_broken_if_oper_status:false,
|
|
|
|
has_physical_mem_access:false,
|
|
|
|
has_process_io_counters:true,
|
|
|
|
has_terminal_services:true,
|
|
|
|
has_create_global_privilege:true,
|
|
|
|
has_ioctl_storage_get_media_types_ex:true,
|
|
|
|
has_extended_priority_class:true,
|
|
|
|
has_guid_volumes:true,
|
|
|
|
has_disk_ex_ioctls:true,
|
|
|
|
has_fileid_dirinfo:true,
|
|
|
|
has_buggy_restart_scan:false,
|
|
|
|
has_mandatory_integrity_control:true,
|
|
|
|
needs_logon_sid_in_sid_list:false,
|
2010-07-15 10:00:52 +02:00
|
|
|
needs_count_in_si_lpres2:false,
|
2009-05-09 17:56:37 +02:00
|
|
|
has_recycle_dot_bin:true,
|
|
|
|
has_gaa_prefixes:true,
|
|
|
|
has_gaa_on_link_prefix:true,
|
|
|
|
supports_all_posix_ai_flags:true,
|
|
|
|
has_restricted_stack_args:false,
|
|
|
|
has_transactions:true,
|
|
|
|
has_recvmsg:true,
|
|
|
|
has_sendmsg:true,
|
|
|
|
has_broken_udf:false,
|
|
|
|
has_console_handle_problem:true,
|
2009-06-26 17:12:06 +02:00
|
|
|
has_broken_alloc_console:true,
|
2009-07-20 17:44:55 +02:00
|
|
|
has_always_all_codepages:true,
|
2010-01-22 23:31:31 +01:00
|
|
|
has_localenames:true,
|
2010-08-30 12:39:43 +02:00
|
|
|
has_mwmo_inputavailable:true,
|
2010-09-19 22:18:36 +02:00
|
|
|
has_buggy_thread_startup:false,
|
2010-10-09 12:54:13 +02:00
|
|
|
has_fast_cwd:true,
|
2011-01-11 15:50:45 +01:00
|
|
|
has_restricted_raw_disk_access:true,
|
2011-03-01 01:19:23 +01:00
|
|
|
use_dont_resolve_hack:false,
|
2011-03-08 15:26:15 +01:00
|
|
|
use_get_sec_info_on_dirs:false,
|
2011-03-20 16:34:29 +01:00
|
|
|
supports_sse:true,
|
* Makefile.in: Build wincap.o.
* wincap.cc: New file.
* wincap.h: Ditto.
* autoload.cc: Add dynamic load statement for `CreateHardLinkA'.
* dcrt0.cc (os_being_run): Eliminated.
(osname): Ditto.
(iswinnt): Ditto.
(set_os_type): Ditto.
(dll_crt0_1): Call wincap.init() instead of set_os_type().
(_dll_crt0): Ditto.
* environ.cc (set_chunksize): New function.
(parse_thing): `forkchunk' setting now invokes function `set_chunksize'.
* fork.cc (chunksize): Eliminated. Moved to be member of wincap.
* host_dependent.h: Removed.
* syscalls.cc (_link): Try using `CreateHardLinkA' first, if available.
* cygheap.cc, dcrt0.cc, delqueue.cc, dir.cc,
environ.cc, fhandler.cc, fhandler.h, fhandler_console.cc,
fhandler_mem.cc, fork.cc, mmap.cc, net.cc, pinfo.cc, pinfo.h,
security.cc, syscalls.cc, sysconf.cc, syslog.cc, thread.cc,
times.cc, tty.cc, uinfo.cc, uname.cc, winsup.h: Use new wincap
capability check throughout.
* winsup.h: Include wincap.h. Eliminate extern declarations of
`os_being_run' and `iswinnt'. Eliminate `os_type" definition.
* include/cygwin/version.h: Bump version to 1.3.4.
2001-09-12 19:46:37 +02:00
|
|
|
};
|
|
|
|
|
2006-01-10 19:11:32 +01:00
|
|
|
wincapc wincap __attribute__((section (".cygwin_dll_common"), shared));
|
* Makefile.in: Build wincap.o.
* wincap.cc: New file.
* wincap.h: Ditto.
* autoload.cc: Add dynamic load statement for `CreateHardLinkA'.
* dcrt0.cc (os_being_run): Eliminated.
(osname): Ditto.
(iswinnt): Ditto.
(set_os_type): Ditto.
(dll_crt0_1): Call wincap.init() instead of set_os_type().
(_dll_crt0): Ditto.
* environ.cc (set_chunksize): New function.
(parse_thing): `forkchunk' setting now invokes function `set_chunksize'.
* fork.cc (chunksize): Eliminated. Moved to be member of wincap.
* host_dependent.h: Removed.
* syscalls.cc (_link): Try using `CreateHardLinkA' first, if available.
* cygheap.cc, dcrt0.cc, delqueue.cc, dir.cc,
environ.cc, fhandler.cc, fhandler.h, fhandler_console.cc,
fhandler_mem.cc, fork.cc, mmap.cc, net.cc, pinfo.cc, pinfo.h,
security.cc, syscalls.cc, sysconf.cc, syslog.cc, thread.cc,
times.cc, tty.cc, uinfo.cc, uname.cc, winsup.h: Use new wincap
capability check throughout.
* winsup.h: Include wincap.h. Eliminate extern declarations of
`os_being_run' and `iswinnt'. Eliminate `os_type" definition.
* include/cygwin/version.h: Bump version to 1.3.4.
2001-09-12 19:46:37 +02:00
|
|
|
|
|
|
|
void
|
|
|
|
wincapc::init ()
|
|
|
|
{
|
2007-01-21 23:54:05 +01:00
|
|
|
bool has_osversioninfoex = true;
|
* Makefile.in: Build wincap.o.
* wincap.cc: New file.
* wincap.h: Ditto.
* autoload.cc: Add dynamic load statement for `CreateHardLinkA'.
* dcrt0.cc (os_being_run): Eliminated.
(osname): Ditto.
(iswinnt): Ditto.
(set_os_type): Ditto.
(dll_crt0_1): Call wincap.init() instead of set_os_type().
(_dll_crt0): Ditto.
* environ.cc (set_chunksize): New function.
(parse_thing): `forkchunk' setting now invokes function `set_chunksize'.
* fork.cc (chunksize): Eliminated. Moved to be member of wincap.
* host_dependent.h: Removed.
* syscalls.cc (_link): Try using `CreateHardLinkA' first, if available.
* cygheap.cc, dcrt0.cc, delqueue.cc, dir.cc,
environ.cc, fhandler.cc, fhandler.h, fhandler_console.cc,
fhandler_mem.cc, fork.cc, mmap.cc, net.cc, pinfo.cc, pinfo.h,
security.cc, syscalls.cc, sysconf.cc, syslog.cc, thread.cc,
times.cc, tty.cc, uinfo.cc, uname.cc, winsup.h: Use new wincap
capability check throughout.
* winsup.h: Include wincap.h. Eliminate extern declarations of
`os_being_run' and `iswinnt'. Eliminate `os_type" definition.
* include/cygwin/version.h: Bump version to 1.3.4.
2001-09-12 19:46:37 +02:00
|
|
|
|
2002-01-29 03:02:03 +01:00
|
|
|
if (caps)
|
|
|
|
return; // already initialized
|
|
|
|
|
* Makefile.in: Build wincap.o.
* wincap.cc: New file.
* wincap.h: Ditto.
* autoload.cc: Add dynamic load statement for `CreateHardLinkA'.
* dcrt0.cc (os_being_run): Eliminated.
(osname): Ditto.
(iswinnt): Ditto.
(set_os_type): Ditto.
(dll_crt0_1): Call wincap.init() instead of set_os_type().
(_dll_crt0): Ditto.
* environ.cc (set_chunksize): New function.
(parse_thing): `forkchunk' setting now invokes function `set_chunksize'.
* fork.cc (chunksize): Eliminated. Moved to be member of wincap.
* host_dependent.h: Removed.
* syscalls.cc (_link): Try using `CreateHardLinkA' first, if available.
* cygheap.cc, dcrt0.cc, delqueue.cc, dir.cc,
environ.cc, fhandler.cc, fhandler.h, fhandler_console.cc,
fhandler_mem.cc, fork.cc, mmap.cc, net.cc, pinfo.cc, pinfo.h,
security.cc, syscalls.cc, sysconf.cc, syslog.cc, thread.cc,
times.cc, tty.cc, uinfo.cc, uname.cc, winsup.h: Use new wincap
capability check throughout.
* winsup.h: Include wincap.h. Eliminate extern declarations of
`os_being_run' and `iswinnt'. Eliminate `os_type" definition.
* include/cygwin/version.h: Bump version to 1.3.4.
2001-09-12 19:46:37 +02:00
|
|
|
memset (&version, 0, sizeof version);
|
2007-01-21 23:54:05 +01:00
|
|
|
/* Request versionex info first, which is available on all systems since
|
|
|
|
NT4 SP6 anyway. If that fails, call the simple version. */
|
|
|
|
version.dwOSVersionInfoSize = sizeof (OSVERSIONINFOEX);
|
|
|
|
if (!GetVersionEx (reinterpret_cast<LPOSVERSIONINFO>(&version)))
|
|
|
|
{
|
|
|
|
has_osversioninfoex = false;
|
|
|
|
version.dwOSVersionInfoSize = sizeof (OSVERSIONINFO);
|
|
|
|
GetVersionEx (reinterpret_cast<LPOSVERSIONINFO>(&version));
|
|
|
|
}
|
* Makefile.in: Build wincap.o.
* wincap.cc: New file.
* wincap.h: Ditto.
* autoload.cc: Add dynamic load statement for `CreateHardLinkA'.
* dcrt0.cc (os_being_run): Eliminated.
(osname): Ditto.
(iswinnt): Ditto.
(set_os_type): Ditto.
(dll_crt0_1): Call wincap.init() instead of set_os_type().
(_dll_crt0): Ditto.
* environ.cc (set_chunksize): New function.
(parse_thing): `forkchunk' setting now invokes function `set_chunksize'.
* fork.cc (chunksize): Eliminated. Moved to be member of wincap.
* host_dependent.h: Removed.
* syscalls.cc (_link): Try using `CreateHardLinkA' first, if available.
* cygheap.cc, dcrt0.cc, delqueue.cc, dir.cc,
environ.cc, fhandler.cc, fhandler.h, fhandler_console.cc,
fhandler_mem.cc, fork.cc, mmap.cc, net.cc, pinfo.cc, pinfo.h,
security.cc, syscalls.cc, sysconf.cc, syslog.cc, thread.cc,
times.cc, tty.cc, uinfo.cc, uname.cc, winsup.h: Use new wincap
capability check throughout.
* winsup.h: Include wincap.h. Eliminate extern declarations of
`os_being_run' and `iswinnt'. Eliminate `os_type" definition.
* include/cygwin/version.h: Bump version to 1.3.4.
2001-09-12 19:46:37 +02:00
|
|
|
|
|
|
|
switch (version.dwPlatformId)
|
|
|
|
{
|
|
|
|
case VER_PLATFORM_WIN32_NT:
|
|
|
|
switch (version.dwMajorVersion)
|
|
|
|
{
|
|
|
|
case 4:
|
2010-09-25 22:06:21 +02:00
|
|
|
/* No mercy. We require at least NT4 SP4. */
|
|
|
|
caps = &wincap_nt4sp4;
|
* Makefile.in: Build wincap.o.
* wincap.cc: New file.
* wincap.h: Ditto.
* autoload.cc: Add dynamic load statement for `CreateHardLinkA'.
* dcrt0.cc (os_being_run): Eliminated.
(osname): Ditto.
(iswinnt): Ditto.
(set_os_type): Ditto.
(dll_crt0_1): Call wincap.init() instead of set_os_type().
(_dll_crt0): Ditto.
* environ.cc (set_chunksize): New function.
(parse_thing): `forkchunk' setting now invokes function `set_chunksize'.
* fork.cc (chunksize): Eliminated. Moved to be member of wincap.
* host_dependent.h: Removed.
* syscalls.cc (_link): Try using `CreateHardLinkA' first, if available.
* cygheap.cc, dcrt0.cc, delqueue.cc, dir.cc,
environ.cc, fhandler.cc, fhandler.h, fhandler_console.cc,
fhandler_mem.cc, fork.cc, mmap.cc, net.cc, pinfo.cc, pinfo.h,
security.cc, syscalls.cc, sysconf.cc, syslog.cc, thread.cc,
times.cc, tty.cc, uinfo.cc, uname.cc, winsup.h: Use new wincap
capability check throughout.
* winsup.h: Include wincap.h. Eliminate extern declarations of
`os_being_run' and `iswinnt'. Eliminate `os_type" definition.
* include/cygwin/version.h: Bump version to 1.3.4.
2001-09-12 19:46:37 +02:00
|
|
|
break;
|
|
|
|
case 5:
|
2003-05-20 17:22:09 +02:00
|
|
|
switch (version.dwMinorVersion)
|
2004-05-28 21:50:07 +02:00
|
|
|
{
|
2003-05-20 17:22:09 +02:00
|
|
|
case 0:
|
2007-07-19 10:33:22 +02:00
|
|
|
if (version.wServicePackMajor < 4)
|
|
|
|
caps = &wincap_2000;
|
|
|
|
else
|
|
|
|
caps = &wincap_2000sp4;
|
2003-05-20 17:22:09 +02:00
|
|
|
break;
|
2003-07-26 06:53:59 +02:00
|
|
|
|
2003-05-20 17:22:09 +02:00
|
|
|
case 1:
|
|
|
|
caps = &wincap_xp;
|
2007-07-19 10:33:22 +02:00
|
|
|
switch (version.wServicePackMajor)
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
caps = &wincap_xp;
|
|
|
|
case 1:
|
|
|
|
caps = &wincap_xpsp1;
|
|
|
|
default:
|
|
|
|
caps = &wincap_xpsp2;
|
|
|
|
}
|
2003-05-20 17:22:09 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
caps = &wincap_2003;
|
|
|
|
}
|
* Makefile.in: Build wincap.o.
* wincap.cc: New file.
* wincap.h: Ditto.
* autoload.cc: Add dynamic load statement for `CreateHardLinkA'.
* dcrt0.cc (os_being_run): Eliminated.
(osname): Ditto.
(iswinnt): Ditto.
(set_os_type): Ditto.
(dll_crt0_1): Call wincap.init() instead of set_os_type().
(_dll_crt0): Ditto.
* environ.cc (set_chunksize): New function.
(parse_thing): `forkchunk' setting now invokes function `set_chunksize'.
* fork.cc (chunksize): Eliminated. Moved to be member of wincap.
* host_dependent.h: Removed.
* syscalls.cc (_link): Try using `CreateHardLinkA' first, if available.
* cygheap.cc, dcrt0.cc, delqueue.cc, dir.cc,
environ.cc, fhandler.cc, fhandler.h, fhandler_console.cc,
fhandler_mem.cc, fork.cc, mmap.cc, net.cc, pinfo.cc, pinfo.h,
security.cc, syscalls.cc, sysconf.cc, syslog.cc, thread.cc,
times.cc, tty.cc, uinfo.cc, uname.cc, winsup.h: Use new wincap
capability check throughout.
* winsup.h: Include wincap.h. Eliminate extern declarations of
`os_being_run' and `iswinnt'. Eliminate `os_type" definition.
* include/cygwin/version.h: Bump version to 1.3.4.
2001-09-12 19:46:37 +02:00
|
|
|
break;
|
2005-09-28 21:33:18 +02:00
|
|
|
case 6:
|
2009-05-09 17:56:37 +02:00
|
|
|
switch (version.dwMinorVersion)
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
caps = &wincap_vista;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
caps = &wincap_7;
|
|
|
|
break;
|
|
|
|
}
|
2005-09-28 21:33:18 +02:00
|
|
|
break;
|
* Makefile.in: Build wincap.o.
* wincap.cc: New file.
* wincap.h: Ditto.
* autoload.cc: Add dynamic load statement for `CreateHardLinkA'.
* dcrt0.cc (os_being_run): Eliminated.
(osname): Ditto.
(iswinnt): Ditto.
(set_os_type): Ditto.
(dll_crt0_1): Call wincap.init() instead of set_os_type().
(_dll_crt0): Ditto.
* environ.cc (set_chunksize): New function.
(parse_thing): `forkchunk' setting now invokes function `set_chunksize'.
* fork.cc (chunksize): Eliminated. Moved to be member of wincap.
* host_dependent.h: Removed.
* syscalls.cc (_link): Try using `CreateHardLinkA' first, if available.
* cygheap.cc, dcrt0.cc, delqueue.cc, dir.cc,
environ.cc, fhandler.cc, fhandler.h, fhandler_console.cc,
fhandler_mem.cc, fork.cc, mmap.cc, net.cc, pinfo.cc, pinfo.h,
security.cc, syscalls.cc, sysconf.cc, syslog.cc, thread.cc,
times.cc, tty.cc, uinfo.cc, uname.cc, winsup.h: Use new wincap
capability check throughout.
* winsup.h: Include wincap.h. Eliminate extern declarations of
`os_being_run' and `iswinnt'. Eliminate `os_type" definition.
* include/cygwin/version.h: Bump version to 1.3.4.
2001-09-12 19:46:37 +02:00
|
|
|
default:
|
2010-09-25 22:06:21 +02:00
|
|
|
caps = &wincap_minimal;
|
* Makefile.in: Build wincap.o.
* wincap.cc: New file.
* wincap.h: Ditto.
* autoload.cc: Add dynamic load statement for `CreateHardLinkA'.
* dcrt0.cc (os_being_run): Eliminated.
(osname): Ditto.
(iswinnt): Ditto.
(set_os_type): Ditto.
(dll_crt0_1): Call wincap.init() instead of set_os_type().
(_dll_crt0): Ditto.
* environ.cc (set_chunksize): New function.
(parse_thing): `forkchunk' setting now invokes function `set_chunksize'.
* fork.cc (chunksize): Eliminated. Moved to be member of wincap.
* host_dependent.h: Removed.
* syscalls.cc (_link): Try using `CreateHardLinkA' first, if available.
* cygheap.cc, dcrt0.cc, delqueue.cc, dir.cc,
environ.cc, fhandler.cc, fhandler.h, fhandler_console.cc,
fhandler_mem.cc, fork.cc, mmap.cc, net.cc, pinfo.cc, pinfo.h,
security.cc, syscalls.cc, sysconf.cc, syslog.cc, thread.cc,
times.cc, tty.cc, uinfo.cc, uname.cc, winsup.h: Use new wincap
capability check throughout.
* winsup.h: Include wincap.h. Eliminate extern declarations of
`os_being_run' and `iswinnt'. Eliminate `os_type" definition.
* include/cygwin/version.h: Bump version to 1.3.4.
2001-09-12 19:46:37 +02:00
|
|
|
break;
|
|
|
|
}
|
2001-11-05 07:09:15 +01:00
|
|
|
break;
|
* Makefile.in: Build wincap.o.
* wincap.cc: New file.
* wincap.h: Ditto.
* autoload.cc: Add dynamic load statement for `CreateHardLinkA'.
* dcrt0.cc (os_being_run): Eliminated.
(osname): Ditto.
(iswinnt): Ditto.
(set_os_type): Ditto.
(dll_crt0_1): Call wincap.init() instead of set_os_type().
(_dll_crt0): Ditto.
* environ.cc (set_chunksize): New function.
(parse_thing): `forkchunk' setting now invokes function `set_chunksize'.
* fork.cc (chunksize): Eliminated. Moved to be member of wincap.
* host_dependent.h: Removed.
* syscalls.cc (_link): Try using `CreateHardLinkA' first, if available.
* cygheap.cc, dcrt0.cc, delqueue.cc, dir.cc,
environ.cc, fhandler.cc, fhandler.h, fhandler_console.cc,
fhandler_mem.cc, fork.cc, mmap.cc, net.cc, pinfo.cc, pinfo.h,
security.cc, syscalls.cc, sysconf.cc, syslog.cc, thread.cc,
times.cc, tty.cc, uinfo.cc, uname.cc, winsup.h: Use new wincap
capability check throughout.
* winsup.h: Include wincap.h. Eliminate extern declarations of
`os_being_run' and `iswinnt'. Eliminate `os_type" definition.
* include/cygwin/version.h: Bump version to 1.3.4.
2001-09-12 19:46:37 +02:00
|
|
|
case VER_PLATFORM_WIN32_WINDOWS:
|
2007-02-23 16:15:50 +01:00
|
|
|
/* I'd be very surprised if this code is ever hit, but it doesn't
|
|
|
|
hurt to keep it. */
|
2007-02-21 16:18:07 +01:00
|
|
|
api_fatal ("Windows 95/98/Me are not supported.");
|
2001-11-05 07:09:15 +01:00
|
|
|
break;
|
* Makefile.in: Build wincap.o.
* wincap.cc: New file.
* wincap.h: Ditto.
* autoload.cc: Add dynamic load statement for `CreateHardLinkA'.
* dcrt0.cc (os_being_run): Eliminated.
(osname): Ditto.
(iswinnt): Ditto.
(set_os_type): Ditto.
(dll_crt0_1): Call wincap.init() instead of set_os_type().
(_dll_crt0): Ditto.
* environ.cc (set_chunksize): New function.
(parse_thing): `forkchunk' setting now invokes function `set_chunksize'.
* fork.cc (chunksize): Eliminated. Moved to be member of wincap.
* host_dependent.h: Removed.
* syscalls.cc (_link): Try using `CreateHardLinkA' first, if available.
* cygheap.cc, dcrt0.cc, delqueue.cc, dir.cc,
environ.cc, fhandler.cc, fhandler.h, fhandler_console.cc,
fhandler_mem.cc, fork.cc, mmap.cc, net.cc, pinfo.cc, pinfo.h,
security.cc, syscalls.cc, sysconf.cc, syslog.cc, thread.cc,
times.cc, tty.cc, uinfo.cc, uname.cc, winsup.h: Use new wincap
capability check throughout.
* winsup.h: Include wincap.h. Eliminate extern declarations of
`os_being_run' and `iswinnt'. Eliminate `os_type" definition.
* include/cygwin/version.h: Bump version to 1.3.4.
2001-09-12 19:46:37 +02:00
|
|
|
default:
|
2010-09-25 22:06:21 +02:00
|
|
|
caps = &wincap_minimal;
|
* Makefile.in: Build wincap.o.
* wincap.cc: New file.
* wincap.h: Ditto.
* autoload.cc: Add dynamic load statement for `CreateHardLinkA'.
* dcrt0.cc (os_being_run): Eliminated.
(osname): Ditto.
(iswinnt): Ditto.
(set_os_type): Ditto.
(dll_crt0_1): Call wincap.init() instead of set_os_type().
(_dll_crt0): Ditto.
* environ.cc (set_chunksize): New function.
(parse_thing): `forkchunk' setting now invokes function `set_chunksize'.
* fork.cc (chunksize): Eliminated. Moved to be member of wincap.
* host_dependent.h: Removed.
* syscalls.cc (_link): Try using `CreateHardLinkA' first, if available.
* cygheap.cc, dcrt0.cc, delqueue.cc, dir.cc,
environ.cc, fhandler.cc, fhandler.h, fhandler_console.cc,
fhandler_mem.cc, fork.cc, mmap.cc, net.cc, pinfo.cc, pinfo.h,
security.cc, syscalls.cc, sysconf.cc, syslog.cc, thread.cc,
times.cc, tty.cc, uinfo.cc, uname.cc, winsup.h: Use new wincap
capability check throughout.
* winsup.h: Include wincap.h. Eliminate extern declarations of
`os_being_run' and `iswinnt'. Eliminate `os_type" definition.
* include/cygwin/version.h: Bump version to 1.3.4.
2001-09-12 19:46:37 +02:00
|
|
|
break;
|
|
|
|
}
|
2003-09-27 05:44:31 +02:00
|
|
|
|
2007-01-21 23:54:05 +01:00
|
|
|
if (has_osversioninfoex && version.wProductType != VER_NT_WORKSTATION)
|
2011-04-02 13:30:27 +02:00
|
|
|
((wincaps *)caps)->is_server = true;
|
2009-12-18 21:32:04 +01:00
|
|
|
if (NT_SUCCESS (NtQueryInformationProcess (NtCurrentProcess (),
|
2008-04-28 10:47:06 +02:00
|
|
|
ProcessWow64Information,
|
|
|
|
&wow64, sizeof wow64, NULL))
|
|
|
|
&& !wow64)
|
2008-02-13 10:42:22 +01:00
|
|
|
{
|
2008-04-27 18:12:00 +02:00
|
|
|
((wincaps *)caps)->needs_count_in_si_lpres2 = false;
|
|
|
|
((wincaps *)caps)->has_restricted_stack_args = false;
|
2008-02-13 10:42:22 +01:00
|
|
|
}
|
2006-01-10 19:11:32 +01:00
|
|
|
|
2010-09-19 22:18:36 +02:00
|
|
|
if (!wow64)
|
|
|
|
((wincaps *) caps)->has_buggy_thread_startup = false;
|
2007-12-12 13:12:24 +01:00
|
|
|
__small_sprintf (osnam, "NT-%d.%d", version.dwMajorVersion,
|
* Makefile.in: Build wincap.o.
* wincap.cc: New file.
* wincap.h: Ditto.
* autoload.cc: Add dynamic load statement for `CreateHardLinkA'.
* dcrt0.cc (os_being_run): Eliminated.
(osname): Ditto.
(iswinnt): Ditto.
(set_os_type): Ditto.
(dll_crt0_1): Call wincap.init() instead of set_os_type().
(_dll_crt0): Ditto.
* environ.cc (set_chunksize): New function.
(parse_thing): `forkchunk' setting now invokes function `set_chunksize'.
* fork.cc (chunksize): Eliminated. Moved to be member of wincap.
* host_dependent.h: Removed.
* syscalls.cc (_link): Try using `CreateHardLinkA' first, if available.
* cygheap.cc, dcrt0.cc, delqueue.cc, dir.cc,
environ.cc, fhandler.cc, fhandler.h, fhandler_console.cc,
fhandler_mem.cc, fork.cc, mmap.cc, net.cc, pinfo.cc, pinfo.h,
security.cc, syscalls.cc, sysconf.cc, syslog.cc, thread.cc,
times.cc, tty.cc, uinfo.cc, uname.cc, winsup.h: Use new wincap
capability check throughout.
* winsup.h: Include wincap.h. Eliminate extern declarations of
`os_being_run' and `iswinnt'. Eliminate `os_type" definition.
* include/cygwin/version.h: Bump version to 1.3.4.
2001-09-12 19:46:37 +02:00
|
|
|
version.dwMinorVersion);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
wincapc::set_chunksize (DWORD nchunksize)
|
|
|
|
{
|
2008-04-27 18:12:00 +02:00
|
|
|
((wincaps *)caps)->chunksize = nchunksize;
|
* Makefile.in: Build wincap.o.
* wincap.cc: New file.
* wincap.h: Ditto.
* autoload.cc: Add dynamic load statement for `CreateHardLinkA'.
* dcrt0.cc (os_being_run): Eliminated.
(osname): Ditto.
(iswinnt): Ditto.
(set_os_type): Ditto.
(dll_crt0_1): Call wincap.init() instead of set_os_type().
(_dll_crt0): Ditto.
* environ.cc (set_chunksize): New function.
(parse_thing): `forkchunk' setting now invokes function `set_chunksize'.
* fork.cc (chunksize): Eliminated. Moved to be member of wincap.
* host_dependent.h: Removed.
* syscalls.cc (_link): Try using `CreateHardLinkA' first, if available.
* cygheap.cc, dcrt0.cc, delqueue.cc, dir.cc,
environ.cc, fhandler.cc, fhandler.h, fhandler_console.cc,
fhandler_mem.cc, fork.cc, mmap.cc, net.cc, pinfo.cc, pinfo.h,
security.cc, syscalls.cc, sysconf.cc, syslog.cc, thread.cc,
times.cc, tty.cc, uinfo.cc, uname.cc, winsup.h: Use new wincap
capability check throughout.
* winsup.h: Include wincap.h. Eliminate extern declarations of
`os_being_run' and `iswinnt'. Eliminate `os_type" definition.
* include/cygwin/version.h: Bump version to 1.3.4.
2001-09-12 19:46:37 +02:00
|
|
|
}
|