diff options
Diffstat (limited to 'winsup/cygwin/wincap.cc')
-rw-r--r-- | winsup/cygwin/wincap.cc | 36 |
1 files changed, 24 insertions, 12 deletions
diff --git a/winsup/cygwin/wincap.cc b/winsup/cygwin/wincap.cc index 0a9307068..eb4981225 100644 --- a/winsup/cygwin/wincap.cc +++ b/winsup/cygwin/wincap.cc @@ -53,7 +53,8 @@ static NO_COPY wincaps wincap_unknown = { has_terminal_services:false, has_switch_to_thread:false, cant_debug_dll_entry:false, - has_ioctl_storage_get_media_types_ex:false + has_ioctl_storage_get_media_types_ex:false, + start_proc_suspended:true }; static NO_COPY wincaps wincap_95 = { @@ -98,7 +99,8 @@ static NO_COPY wincaps wincap_95 = { has_terminal_services:false, has_switch_to_thread:false, cant_debug_dll_entry:true, - has_ioctl_storage_get_media_types_ex:false + has_ioctl_storage_get_media_types_ex:false, + start_proc_suspended:true }; static NO_COPY wincaps wincap_95osr2 = { @@ -143,7 +145,8 @@ static NO_COPY wincaps wincap_95osr2 = { has_terminal_services:false, has_switch_to_thread:false, cant_debug_dll_entry:true, - has_ioctl_storage_get_media_types_ex:false + has_ioctl_storage_get_media_types_ex:false, + start_proc_suspended:true }; static NO_COPY wincaps wincap_98 = { @@ -188,7 +191,8 @@ static NO_COPY wincaps wincap_98 = { has_terminal_services:false, has_switch_to_thread:false, cant_debug_dll_entry:true, - has_ioctl_storage_get_media_types_ex:false + has_ioctl_storage_get_media_types_ex:false, + start_proc_suspended:true }; static NO_COPY wincaps wincap_98se = { @@ -233,7 +237,8 @@ static NO_COPY wincaps wincap_98se = { has_terminal_services:false, has_switch_to_thread:false, cant_debug_dll_entry:true, - has_ioctl_storage_get_media_types_ex:false + has_ioctl_storage_get_media_types_ex:false, + start_proc_suspended:true }; static NO_COPY wincaps wincap_me = { @@ -278,7 +283,8 @@ static NO_COPY wincaps wincap_me = { has_terminal_services:false, has_switch_to_thread:false, cant_debug_dll_entry:true, - has_ioctl_storage_get_media_types_ex:false + has_ioctl_storage_get_media_types_ex:false, + start_proc_suspended:true }; static NO_COPY wincaps wincap_nt3 = { @@ -323,7 +329,8 @@ static NO_COPY wincaps wincap_nt3 = { has_terminal_services:false, has_switch_to_thread:false, cant_debug_dll_entry:false, - has_ioctl_storage_get_media_types_ex:false + has_ioctl_storage_get_media_types_ex:false, + start_proc_suspended:false }; static NO_COPY wincaps wincap_nt4 = { @@ -368,7 +375,8 @@ static NO_COPY wincaps wincap_nt4 = { has_terminal_services:false, has_switch_to_thread:true, cant_debug_dll_entry:false, - has_ioctl_storage_get_media_types_ex:false + has_ioctl_storage_get_media_types_ex:false, + start_proc_suspended:false }; static NO_COPY wincaps wincap_nt4sp4 = { @@ -413,7 +421,8 @@ static NO_COPY wincaps wincap_nt4sp4 = { has_terminal_services:false, has_switch_to_thread:true, cant_debug_dll_entry:false, - has_ioctl_storage_get_media_types_ex:false + has_ioctl_storage_get_media_types_ex:false, + start_proc_suspended:false }; static NO_COPY wincaps wincap_2000 = { @@ -458,7 +467,8 @@ static NO_COPY wincaps wincap_2000 = { has_terminal_services:true, has_switch_to_thread:true, cant_debug_dll_entry:false, - has_ioctl_storage_get_media_types_ex:false + has_ioctl_storage_get_media_types_ex:false, + start_proc_suspended:false }; static NO_COPY wincaps wincap_xp = { @@ -503,7 +513,8 @@ static NO_COPY wincaps wincap_xp = { has_terminal_services:true, has_switch_to_thread:true, cant_debug_dll_entry:false, - has_ioctl_storage_get_media_types_ex:true + has_ioctl_storage_get_media_types_ex:true, + start_proc_suspended:false }; static NO_COPY wincaps wincap_2003 = { @@ -548,7 +559,8 @@ static NO_COPY wincaps wincap_2003 = { has_terminal_services:true, has_switch_to_thread:true, cant_debug_dll_entry:false, - has_ioctl_storage_get_media_types_ex:true + has_ioctl_storage_get_media_types_ex:true, + start_proc_suspended:false }; wincapc wincap; |