Mail Archives: cygwin/2015/09/21/13:05:09
X-Recipient: | archive-cygwin AT delorie DOT com
|
DomainKey-Signature: | a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id
|
| :list-unsubscribe:list-subscribe:list-archive:list-post
|
| :list-help:sender:message-id:date:from:mime-version:to:subject
|
| :content-type:content-transfer-encoding; q=dns; s=default; b=r/J
|
| 4oq+emvzkzrJtYG1lAUUoEfbeEZKni9ZHv1Pv/xncOB+AlADUvqu4RKxQAkZkkuR
|
| a57nItxCOMZo+2hmw1nNfKypO2nCo5Q6M4Z5TL5Xbvhr23hP72y+KEkXSVNO+/Q+
|
| s5tYvtFBS2zyKvQ6jaOvNfu2VTzvkIX9IUXdZ/nc=
|
DKIM-Signature: | v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id
|
| :list-unsubscribe:list-subscribe:list-archive:list-post
|
| :list-help:sender:message-id:date:from:mime-version:to:subject
|
| :content-type:content-transfer-encoding; s=default; bh=6LW9NTK8f
|
| bVOH2iwRTkULmGZfuM=; b=ZcxsFos6vLyd5NVa6EfTxbBTu41k13fEPbe7QtEco
|
| sFW6cy+Mc4oi8JWqrUHr3Wh/GLZAZfPL5tabOBcVFv6Ktstks2FJXk11sS4Nv4fa
|
| tGK78h2HvEJjnrBvBu+Mqb0NA040CDPDjap+ijYwytQKHzT6PbxKPeJOJAb7uNUA
|
| BE=
|
Mailing-List: | contact cygwin-help AT cygwin DOT com; run by ezmlm
|
List-Id: | <cygwin.cygwin.com>
|
List-Subscribe: | <mailto:cygwin-subscribe AT cygwin DOT com>
|
List-Archive: | <http://sourceware.org/ml/cygwin/>
|
List-Post: | <mailto:cygwin AT cygwin DOT com>
|
List-Help: | <mailto:cygwin-help AT cygwin DOT com>, <http://sourceware.org/ml/#faqs>
|
Sender: | cygwin-owner AT cygwin DOT com
|
Mail-Followup-To: | cygwin AT cygwin DOT com
|
Delivered-To: | mailing list cygwin AT cygwin DOT com
|
Authentication-Results: | sourceware.org; auth=none
|
X-Virus-Found: | No
|
X-Spam-SWARE-Status: | No, score=1.1 required=5.0 tests=BAYES_50,KAM_LAZY_DOMAIN_SECURITY,RCVD_IN_DNSWL_LOW autolearn=no version=3.3.2
|
X-HELO: | wp170.webpack.hosteurope.de
|
Message-ID: | <5600389F.1090902@feulner-caps.de>
|
Date: | Mon, 21 Sep 2015 19:04:31 +0200
|
From: | Johannes Feulner <jo AT feulner-caps DOT de>
|
User-Agent: | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.0
|
MIME-Version: | 1.0
|
To: | cygwin AT cygwin DOT com
|
Subject: | cygwin's rm fails on mapped network shares depending on the size of the file
|
Hi all,
rm gives me a "Permission denied" error if I try to remove a file from a
remote windows network share that is mapped to a drive letter.
Especially strange is that it depends on the size of the file: It works
for files smaller than 4K. For instance:
[h]$ yes | head --bytes 4095 > out; rm out
(works fine)
[h]$ yes | head --bytes 4096 > out; rm out
rm: cannot remove 'out': Permission denied
On my local drive, rm works fine. In windows explorer or using "del" in
cmd.exe, I can remove files of any size.
Does anyone have an idea why this happens and how it can be resolved?
I appended the output of uname, /usr/lib/csih/getVolInfo and strace below.
Best regards,
Johannes
uname -a
CYGWIN_NT-6.1 my_computer_name 2.2.1(0.289/5/3) 2015-08-20 11:42 x86_64
Cygwin
[h]$ /usr/lib/csih/getVolInfo /cygdrive/h
Device Type : 7
Characteristics : 10
Volume Name : <229>
Serial Number : 40
Max Filenamelength : 255
Filesystemname : <NTFS>
Flags : 400fe
FILE_CASE_SENSITIVE_SEARCH : FALSE
FILE_CASE_PRESERVED_NAMES : TRUE
FILE_UNICODE_ON_DISK : TRUE
FILE_PERSISTENT_ACLS : TRUE
FILE_FILE_COMPRESSION : TRUE
FILE_VOLUME_QUOTAS : TRUE
FILE_SUPPORTS_SPARSE_FILES : TRUE
FILE_SUPPORTS_REPARSE_POINTS: TRUE
FILE_SUPPORTS_REMOTE_STORAGE: FALSE
FILE_VOLUME_IS_COMPRESSED : FALSE
FILE_SUPPORTS_OBJECT_IDS : FALSE
FILE_SUPPORTS_ENCRYPTION : FALSE
FILE_NAMED_STREAMS : TRUE
FILE_READ_ONLY_VOLUME : FALSE
FILE_SEQUENTIAL_WRITE_ONCE : FALSE
FILE_SUPPORTS_TRANSACTIONS : FALSE
strace rm out
presumably most intersting part:
346 265877 [main] rm 999132 path_conv::check: this->path(H:\out),
has_acls(1)
309 266186 [main] rm 999132 unlink_nt: Trying to delete \??\H:\out,
isdir = 0
1489 267675 [main] rm 999132 unlink_nt: Opening \??\H:\out for delete
failed, status = 0xC0000022
332 268007 [main] rm 999132 unlink_nt: \??\H:\out, return status =
0xC0000022
326 268333 [main] rm 999132 seterrno_from_nt_status:
/home/corinna/src/cygwin/cygwin-2.2.1/cygwin-2.2.1-1.x86_64/src/newlib-cygwin/winsup/cygwin/syscalls.cc:1068
status 0xC0000022 -> windows error 5
337 268670 [main] rm 999132 geterrno_from_win_error: windows error 5
== errno 13
318 268988 [main] rm 999132 unlink: -1 = unlink(/cygdrive/h/out),
errno 13
larger part:
555 240757 [main] rm 999132 isatty: 1 = isatty(0)
381 241138 [main] rm 999132 normalize_posix_path: src /cygdrive/h/out
302 241440 [main] rm 999132 normalize_posix_path: /cygdrive/h/out =
normalize_posix_path (/cygdrive/h/out)
330 241770 [main] rm 999132 mount_info::conv_to_win32_path:
conv_to_win32_path (/cygdrive/h/out)
310 242080 [main] rm 999132 mount_info::cygdrive_win32_path: src
'/cygdrive/h/out', dst 'H:\out'
306 242386 [main] rm 999132 set_flags: flags: binary (0x2)
339 242725 [main] rm 999132 mount_info::conv_to_win32_path: src_path
/cygdrive/h/out, dst H:\out, flags 0x6022, rc 0
1448 244173 [main] rm 999132 symlink_info::check: 0x0 = NtCreateFile
(\??\H:\out)
353 244526 [main] rm 999132 symlink_info::check: not a symlink
321 244847 [main] rm 999132 symlink_info::check: 0 =
symlink.check(H:\out, 0x22B5F0) (0x406022)
304 245151 [main] rm 999132 path_conv::check: this->path(H:\out),
has_acls(1)
315 245466 [main] rm 999132 build_fh_pc: fh 0x180333D90, dev 000000C3
305 245771 [main] rm 999132 stat_worker: (\??\H:\out, 0x6000469D0,
0x180333D90), file_attributes 32
491 246262 [main] rm 999132 fhandler_base::fstat_helper: 0 = fstat
(\??\H:\out, 0x6000469D0) st_size=4096, st_mode=0100644,
st_ino=7085091687733214641st_atim=56000ECC.0 st_ctim=56000E4B.0
st_mtim=56000E4B.0 st_birthtim=56000E39.0
327 246589 [main] rm 999132 stat_worker: 0 = (\??\H:\out,0x6000469D0)
747 247336 [main] rm 999132 normalize_posix_path: src /cygdrive/h/out
441 247777 [main] rm 999132 normalize_posix_path: /cygdrive/h/out =
normalize_posix_path (/cygdrive/h/out)
331 248108 [main] rm 999132 mount_info::conv_to_win32_path:
conv_to_win32_path (/cygdrive/h/out)
322 248430 [main] rm 999132 mount_info::cygdrive_win32_path: src
'/cygdrive/h/out', dst 'H:\out'
327 248757 [main] rm 999132 set_flags: flags: binary (0x2)
315 249072 [main] rm 999132 mount_info::conv_to_win32_path: src_path
/cygdrive/h/out, dst H:\out, flags 0x6022, rc 0
1392 250464 [main] rm 999132 symlink_info::check: 0x0 = NtCreateFile
(\??\H:\out)
359 250823 [main] rm 999132 symlink_info::check: not a symlink
315 251138 [main] rm 999132 symlink_info::check: 0 =
symlink.check(H:\out, 0x22B5A0) (0x406022)
331 251469 [main] rm 999132 path_conv::check: this->path(H:\out),
has_acls(1)
308 251777 [main] rm 999132 build_fh_pc: fh 0x180333D90, dev 000000C3
313 252090 [main] rm 999132 stat_worker: (\??\H:\out, 0x22C860,
0x180333D90), file_attributes 32
496 252586 [main] rm 999132 fhandler_base::fstat_helper: 0 = fstat
(\??\H:\out, 0x22C860) st_size=4096, st_mode=0100644,
st_ino=7085091687733214641st_atim=56000ECC.0 st_ctim=56000E4B.0
st_mtim=56000E4B.0 st_birthtim=56000E39.0
967 253553 [main] rm 999132 stat_worker: 0 = (\??\H:\out,0x22C860)
877 254430 [main] rm 999132 normalize_posix_path: src /cygdrive/h/out
386 254816 [main] rm 999132 normalize_posix_path: /cygdrive/h/out =
normalize_posix_path (/cygdrive/h/out)
413 255229 [main] rm 999132 mount_info::conv_to_win32_path:
conv_to_win32_path (/cygdrive/h/out)
404 255633 [main] rm 999132 mount_info::cygdrive_win32_path: src
'/cygdrive/h/out', dst 'H:\out'
592 256225 [main] rm 999132 set_flags: flags: binary (0x2)
397 256622 [main] rm 999132 mount_info::conv_to_win32_path: src_path
/cygdrive/h/out, dst H:\out, flags 0x6022, rc 0
1473 258095 [main] rm 999132 symlink_info::check: 0x0 = NtCreateFile
(\??\H:\out)
365 258460 [main] rm 999132 symlink_info::check: not a symlink
418 258878 [main] rm 999132 symlink_info::check: 0 =
symlink.check(H:\out, 0x22B560) (0x406022)
322 259200 [main] rm 999132 path_conv::check: this->path(H:\out),
has_acls(1)
333 259533 [main] rm 999132 build_fh_pc: fh 0x180333D90, dev 000000C3
589 260122 [main] rm 999132 fhandler_base::fstat_helper: 0 = fstat
(\??\H:\out, 0x22C6D0) st_size=4096, st_mode=0100644,
st_ino=7085091687733214641st_atim=56000ECC.0 st_ctim=56000E4B.0
st_mtim=56000E4B.0 st_birthtim=56000E39.0
332 260454 [main] rm 999132 fhandler_base::fhaccess: returning 0
698 261152 [main] rm 999132 faccessat: returning 0
337 261489 [main] rm 999132 normalize_posix_path: src /cygdrive/h/out
336 261825 [main] rm 999132 normalize_posix_path: /cygdrive/h/out =
normalize_posix_path (/cygdrive/h/out)
314 262139 [main] rm 999132 mount_info::conv_to_win32_path:
conv_to_win32_path (/cygdrive/h/out)
309 262448 [main] rm 999132 mount_info::cygdrive_win32_path: src
'/cygdrive/h/out', dst 'H:\out'
332 262780 [main] rm 999132 set_flags: flags: binary (0x2)
305 263085 [main] rm 999132 mount_info::conv_to_win32_path: src_path
/cygdrive/h/out, dst H:\out, flags 0x6022, rc 0
1398 264483 [main] rm 999132 symlink_info::check: 0x0 = NtCreateFile
(\??\H:\out)
371 264854 [main] rm 999132 symlink_info::check: not a symlink
677 265531 [main] rm 999132 symlink_info::check: 0 =
symlink.check(H:\out, 0x22B5D0) (0x6022)
346 265877 [main] rm 999132 path_conv::check: this->path(H:\out),
has_acls(1)
309 266186 [main] rm 999132 unlink_nt: Trying to delete \??\H:\out,
isdir = 0
1489 267675 [main] rm 999132 unlink_nt: Opening \??\H:\out for delete
failed, status = 0xC0000022
332 268007 [main] rm 999132 unlink_nt: \??\H:\out, return status =
0xC0000022
326 268333 [main] rm 999132 seterrno_from_nt_status:
/home/corinna/src/cygwin/cygwin-2.2.1/cygwin-2.2.1-1.x86_64/src/newlib-cygwin/winsup/cygwin/syscalls.cc:1068
status 0xC0000022 -> windows error 5
337 268670 [main] rm 999132 geterrno_from_win_error: windows error 5
== errno 13
318 268988 [main] rm 999132 unlink: -1 = unlink(/cygdrive/h/out),
errno 13
685 269673 [main] rm 999132 open:
open(/usr/share/locale/locale.alias, 0x0)
329 270002 [main] rm 999132 normalize_posix_path: src
/usr/share/locale/locale.alias
324 270326 [main] rm 999132 normalize_posix_path:
/usr/share/locale/locale.alias = normalize_posix_path
(/usr/share/locale/locale.alias)
322 270648 [main] rm 999132 mount_info::conv_to_win32_path:
conv_to_win32_path (/usr/share/locale/locale.alias)
321 270969 [main] rm 999132 set_flags: flags: binary (0x2)
303 271272 [main] rm 999132 mount_info::conv_to_win32_path: src_path
/usr/share/locale/locale.alias, dst
D:\cygwin\usr\share\locale\locale.alias, flags 0x3000A, rc 0
376 271648 [main] rm 999132 symlink_info::check: 0x0 = NtCreateFile
(\??\D:\cygwin\usr\share\locale\locale.alias)
332 271980 [main] rm 999132 symlink_info::check: not a symlink
339 272319 [main] rm 999132 symlink_info::check: 0 =
symlink.check(D:\cygwin\usr\share\locale\locale.alias, 0x22ADF0) (0x3000A)
1278 273597 [main] rm 999132 path_conv::check:
this->path(D:\cygwin\usr\share\locale\locale.alias), has_acls(1)
397 273994 [main] rm 999132 build_fh_pc: fh 0x180333D90, dev 000000C3
350 274344 [main] rm 999132 fhandler_base::open:
(\??\D:\cygwin\usr\share\locale\locale.alias, 0x108000)
461 274805 [main] rm 999132 fhandler_base::set_flags: flags
0x108000, supplied_bin 0x10000
376 275181 [main] rm 999132 fhandler_base::set_flags: filemode set
to binary
321 275502 [main] rm 999132 fhandler_base::open: 0x0 = NtCreateFile
(0x1A0, 0x80100000, \??\D:\cygwin\usr\share\locale\locale.alias, io,
NULL, 0x0, 0x7, 0x1, 0x4020, NULL, 0)
348 275850 [main] rm 999132 fhandler_base::open: 1 =
fhandler_base::open(\??\D:\cygwin\usr\share\locale\locale.alias, 0x108000)
354 276204 [main] rm 999132 fhandler_base::open_fs: 1 =
fhandler_disk_file::open(\??\D:\cygwin\usr\share\locale\locale.alias,
0x8000)
334 276538 [main] rm 999132 open: 3 =
open(/usr/share/locale/locale.alias, 0x8000)
467 277005 [main] rm 999132 _cygwin_istext_for_stdio: fd 3: opened
as binary
457 277462 [main] rm 999132 cygpsid::debug_print: get_sids_info:
owner SID = S-1-5-21-13193587-1710697102-1874079122-837837
321 277783 [main] rm 999132 cygpsid::debug_print: get_sids_info:
group SID = S-1-5-21-13193587-1710697102-1874079122-513
406 278189 [main] rm 999132 get_info_from_sd: ACL 0x1A4, uid
1886413, gid 1049089
387 278576 [main] rm 999132 fhandler_base::fstat_helper: 0 = fstat
(\??\D:\cygwin\usr\share\locale\locale.alias, 0x22C010) st_size=3116,
st_mode=0100644, st_ino=562949953486867st_atim=55F2EA0E.172C17A0
st_ctim=55F2EA0E.173B5A44 st_mtim=55F1A97C.0 st_birthtim=55F2EA0E.172C17A0
346 278922 [main] rm 999132 fstat64: 0 = fstat(3, 0x22C010)
384 279306 [main] rm 999132 read: read(3, 0x6000470A0, 65536) blocking
377 279683 [main] rm 999132 fhandler_base::read: returning 3116,
binary mode
323 280006 [main] rm 999132 read: 3116 = read(3, 0x6000470A0, 3116)
382 280388 [main] rm 999132 read: read(3, 0x6000470A0, 65536) blocking
334 280722 [main] rm 999132 fhandler_base::read: returning 0, binary
mode
313 281035 [main] rm 999132 read: 0 = read(3, 0x6000470A0, 0)
360 281395 [main] rm 999132 close: close(3)
346 281741 [main] rm 999132 fhandler_base::close: closing
'/usr/share/locale/locale.alias' handle 0x1A0
386 282127 [main] rm 999132 close: 0 = close(3)
585 282712 [main] rm 999132 open:
open(/usr/local/share/locale/locale.alias, 0x0)
330 283042 [main] rm 999132 normalize_posix_path: src
/usr/local/share/locale/locale.alias
308 283350 [main] rm 999132 normalize_posix_path:
/usr/local/share/locale/locale.alias = normalize_posix_path
(/usr/local/share/locale/locale.alias)
323 283673 [main] rm 999132 mount_info::conv_to_win32_path:
conv_to_win32_path (/usr/local/share/locale/locale.alias)
312 283985 [main] rm 999132 set_flags: flags: binary (0x2)
311 284296 [main] rm 999132 mount_info::conv_to_win32_path: src_path
/usr/local/share/locale/locale.alias, dst
D:\cygwin\usr\local\share\locale\locale.alias, flags 0x3000A, rc 0
444 284740 [main] rm 999132 symlink_info::check: 0xC000003A =
NtCreateFile (\??\D:\cygwin\usr\local\share\locale\locale.alias)
331 285071 [main] rm 999132 symlink_info::check: 0xC000003A =
NtQueryInformationFile (\??\D:\cygwin\usr\local\share\locale\locale.alias)
309 285380 [main] rm 999132 symlink_info::check: not a symlink
322 285702 [main] rm 999132 symlink_info::check: 0 =
symlink.check(D:\cygwin\usr\local\share\locale\locale.alias, 0x22ADE0)
(0x3000A)
337 286039 [main] rm 999132 mount_info::conv_to_win32_path:
conv_to_win32_path (/usr/local/share/locale)
322 286361 [main] rm 999132 set_flags: flags: binary (0x2)
314 286675 [main] rm 999132 mount_info::conv_to_win32_path: src_path
/usr/local/share/locale, dst D:\cygwin\usr\local\share\locale, flags
0x3000A, rc 0
387 287062 [main] rm 999132 symlink_info::check: 0xC000003A =
NtCreateFile (\??\D:\cygwin\usr\local\share\locale)
342 287404 [main] rm 999132 symlink_info::check: 0xC000003A =
NtQueryInformationFile (\??\D:\cygwin\usr\local\share\locale)
317 287721 [main] rm 999132 symlink_info::check: not a symlink
324 288045 [main] rm 999132 symlink_info::check: 0 =
symlink.check(D:\cygwin\usr\local\share\locale, 0x22ADE0) (0x3000A)
311 288356 [main] rm 999132 mount_info::conv_to_win32_path:
conv_to_win32_path (/usr/local/share)
324 288680 [main] rm 999132 set_flags: flags: binary (0x2)
306 288986 [main] rm 999132 mount_info::conv_to_win32_path: src_path
/usr/local/share, dst D:\cygwin\usr\local\share, flags 0x3000A, rc 0
363 289349 [main] rm 999132 symlink_info::check: 0xC0000034 =
NtCreateFile (\??\D:\cygwin\usr\local\share)
484 289833 [main] rm 999132 symlink_info::check: 0xC0000034 =
NtQueryInformationFile (\??\D:\cygwin\usr\local\share)
364 290197 [main] rm 999132 symlink_info::check: 0xC0000034 =
NtCreateFile (\??\D:\cygwin\usr\local\share.lnk)
320 290517 [main] rm 999132 symlink_info::check: 0xC0000034 =
NtQueryInformationFile (\??\D:\cygwin\usr\local\share.lnk)
308 290825 [main] rm 999132 symlink_info::check: 0 =
symlink.check(D:\cygwin\usr\local\share, 0x22ADE0) (0x3000A)
303 291128 [main] rm 999132 mount_info::conv_to_win32_path:
conv_to_win32_path (/usr/local)
314 291442 [main] rm 999132 set_flags: flags: binary (0x2)
308 291750 [main] rm 999132 mount_info::conv_to_win32_path: src_path
/usr/local, dst D:\cygwin\usr\local, flags 0x3000A, rc 0
724 292474 [main] rm 999132 symlink_info::check: 0x0 = NtCreateFile
(\??\D:\cygwin\usr\local)
383 292857 [main] rm 999132 symlink_info::check: not a symlink
334 293191 [main] rm 999132 symlink_info::check: 0 =
symlink.check(D:\cygwin\usr\local, 0x22ADE0) (0x3000A)
330 293521 [main] rm 999132 path_conv::check:
this->path(D:\cygwin\usr\local\share\locale\locale.alias), has_acls(1)
394 293915 [main] rm 999132 build_fh_pc: fh 0x180333D90, dev 000000C3
343 294258 [main] rm 999132 fhandler_base::open:
(\??\D:\cygwin\usr\local\share\locale\locale.alias, 0x108000)
402 294660 [main] rm 999132 seterrno_from_nt_status:
/home/corinna/src/cygwin/cygwin-2.2.1/cygwin-2.2.1-1.x86_64/src/newlib-cygwin/winsup/cygwin/fhandler.cc:693
status 0xC000003A -> windows error 3
350 295010 [main] rm 999132 geterrno_from_win_error: windows error 3
== errno 2
324 295334 [main] rm 999132 fhandler_base::open: 0xC000003A =
NtCreateFile (0x18006BB83, 0x80100000,
\??\D:\cygwin\usr\local\share\locale\locale.alias, io, NULL, 0x0, 0x7,
0x1, 0x4020, NULL, 0)
365 295699 [main] rm 999132 fhandler_base::open: 0 =
fhandler_base::open(\??\D:\cygwin\usr\local\share\locale\locale.alias,
0x108000)
555 296254 [main] rm 999132 fhandler_base::open_fs: 0 =
fhandler_disk_file::open(\??\D:\cygwin\usr\local\share\locale\locale.alias,
0x8000)
360 296614 [main] rm 999132 open: -1 =
open(/usr/local/share/locale/locale.alias, 0x8000), errno 2
538 297152 [main] rm 999132 open:
open(/usr/share/X11/locale/locale.alias, 0x0)
337 297489 [main] rm 999132 normalize_posix_path: src
/usr/share/X11/locale/locale.alias
355 297844 [main] rm 999132 normalize_posix_path:
/usr/share/X11/locale/locale.alias = normalize_posix_path
(/usr/share/X11/locale/locale.alias)
320 298164 [main] rm 999132 mount_info::conv_to_win32_path:
conv_to_win32_path (/usr/share/X11/locale/locale.alias)
316 298480 [main] rm 999132 set_flags: flags: binary (0x2)
304 298784 [main] rm 999132 mount_info::conv_to_win32_path: src_path
/usr/share/X11/locale/locale.alias, dst
D:\cygwin\usr\share\X11\locale\locale.alias, flags 0x3000A, rc 0
384 299168 [main] rm 999132 symlink_info::check: 0x0 = NtCreateFile
(\??\D:\cygwin\usr\share\X11\locale\locale.alias)
367 299535 [main] rm 999132 symlink_info::check: not a symlink
359 299894 [main] rm 999132 symlink_info::check: 0 =
symlink.check(D:\cygwin\usr\share\X11\locale\locale.alias, 0x22ADE0)
(0x3000A)
364 300258 [main] rm 999132 path_conv::check:
this->path(D:\cygwin\usr\share\X11\locale\locale.alias), has_acls(1)
357 300615 [main] rm 999132 build_fh_pc: fh 0x180333D90, dev 000000C3
313 300928 [main] rm 999132 fhandler_base::open:
(\??\D:\cygwin\usr\share\X11\locale\locale.alias, 0x108000)
393 301321 [main] rm 999132 fhandler_base::set_flags: flags
0x108000, supplied_bin 0x10000
318 301639 [main] rm 999132 fhandler_base::set_flags: filemode set
to binary
321 301960 [main] rm 999132 fhandler_base::open: 0x0 = NtCreateFile
(0x1A4, 0x80100000, \??\D:\cygwin\usr\share\X11\locale\locale.alias, io,
NULL, 0x0, 0x7, 0x1, 0x4020, NULL, 0)
311 302271 [main] rm 999132 fhandler_base::open: 1 =
fhandler_base::open(\??\D:\cygwin\usr\share\X11\locale\locale.alias,
0x108000)
328 302599 [main] rm 999132 fhandler_base::open_fs: 1 =
fhandler_disk_file::open(\??\D:\cygwin\usr\share\X11\locale\locale.alias, 0x8000)
306 302905 [main] rm 999132 open: 3 =
open(/usr/share/X11/locale/locale.alias, 0x8000)
412 303317 [main] rm 999132 _cygwin_istext_for_stdio: fd 3: opened
as binary
410 303727 [main] rm 999132 cygpsid::debug_print: get_sids_info:
owner SID = S-1-5-21-13193587-1710697102-1874079122-837837
326 304053 [main] rm 999132 cygpsid::debug_print: get_sids_info:
group SID = S-1-5-21-13193587-1710697102-1874079122-513
310 304363 [main] rm 999132 get_info_from_sd: ACL 0x1A4, uid
1886413, gid 1049089
322 304685 [main] rm 999132 fhandler_base::fstat_helper: 0 = fstat
(\??\D:\cygwin\usr\share\X11\locale\locale.alias, 0x22C000)
st_size=81609, st_mode=0100644,
st_ino=281474976787829st_atim=559AA9BE.38EA99D4
st_ctim=559AA9BE.38F9DC78 st_mtim=5514153C.0 st_birthtim=559AA9BE.38EA99D4
326 305011 [main] rm 999132 fstat64: 0 = fstat(3, 0x22C000)
339 305350 [main] rm 999132 read: read(3, 0x6000470A0, 65536) blocking
364 305714 [main] rm 999132 fhandler_base::read: returning 65536,
binary mode
304 306018 [main] rm 999132 read: 65536 = read(3, 0x6000470A0, 65536)
1757 307775 [main] rm 999132 read: read(3, 0x6000470A0, 65536) blocking
394 308169 [main] rm 999132 fhandler_base::read: returning 16073,
binary mode
316 308485 [main] rm 999132 read: 16073 = read(3, 0x6000470A0, 16073)
818 309303 [main] rm 999132 read: read(3, 0x6000470A0, 65536) blocking
340 309643 [main] rm 999132 fhandler_base::read: returning 0, binary
mode
322 309965 [main] rm 999132 read: 0 = read(3, 0x6000470A0, 0)
375 310340 [main] rm 999132 close: close(3)
318 310658 [main] rm 999132 fhandler_base::close: closing
'/usr/share/X11/locale/locale.alias' handle 0x1A4
379 311037 [main] rm 999132 close: 0 = close(3)
2062 313099 [main] rm 999132 open:
open(/usr/share/locale/en_GB.ISO8859-1/LC_MESSAGES/coreutils.mo, 0x10000)
391 313490 [main] rm 999132 normalize_posix_path: src
/usr/share/locale/en_GB.ISO8859-1/LC_MESSAGES/coreutils.mo
357 313847 [main] rm 999132 normalize_posix_path:
/usr/share/locale/en_GB.ISO8859-1/LC_MESSAGES/coreutils.mo =
normalize_posix_path
(/usr/share/locale/en_GB.ISO8859-1/LC_MESSAGES/coreutils.mo)
382 314229 [main] rm 999132 mount_info::conv_to_win32_path:
conv_to_win32_path
(/usr/share/locale/en_GB.ISO8859-1/LC_MESSAGES/coreutils.mo)
323 314552 [main] rm 999132 set_flags: flags: binary (0x2)
363 314915 [main] rm 999132 mount_info::conv_to_win32_path: src_path
/usr/share/locale/en_GB.ISO8859-1/LC_MESSAGES/coreutils.mo, dst
D:\cygwin\usr\share\locale\en_GB.ISO8859-1\LC_MESSAGES\coreutils.mo,
flags 0x3000A, rc 0
400 315315 [main] rm 999132 symlink_info::check: 0xC000003A =
NtCreateFile
(\??\D:\cygwin\usr\share\locale\en_GB.ISO8859-1\LC_MESSAGES\coreutils.mo)
352 315667 [main] rm 999132 symlink_info::check: 0xC000003A =
NtQueryInformationFile
(\??\D:\cygwin\usr\share\locale\en_GB.ISO8859-1\LC_MESSAGES\coreutils.mo)
330 315997 [main] rm 999132 symlink_info::check: not a symlink
324 316321 [main] rm 999132 symlink_info::check: 0 =
symlink.check(D:\cygwin\usr\share\locale\en_GB.ISO8859-1\LC_MESSAGES\coreutils.mo,
0x22AFD0) (0x3000A)
370 316691 [main] rm 999132 mount_info::conv_to_win32_path:
conv_to_win32_path (/usr/share/locale/en_GB.ISO8859-1/LC_MESSAGES)
331 317022 [main] rm 999132 set_flags: flags: binary (0x2)
319 317341 [main] rm 999132 mount_info::conv_to_win32_path: src_path
/usr/share/locale/en_GB.ISO8859-1/LC_MESSAGES, dst
D:\cygwin\usr\share\locale\en_GB.ISO8859-1\LC_MESSAGES, flags 0x3000A, rc 0
372 317713 [main] rm 999132 symlink_info::check: 0xC000003A =
NtCreateFile (\??\D:\cygwin\usr\share\locale\en_GB.ISO8859-1\LC_MESSAGES)
349 318062 [main] rm 999132 symlink_info::check: 0xC000003A =
NtQueryInformationFile
(\??\D:\cygwin\usr\share\locale\en_GB.ISO8859-1\LC_MESSAGES)
319 318381 [main] rm 999132 symlink_info::check: not a symlink
321 318702 [main] rm 999132 symlink_info::check: 0 =
symlink.check(D:\cygwin\usr\share\locale\en_GB.ISO8859-1\LC_MESSAGES,
0x22AFD0) (0x3000A)
334 319036 [main] rm 999132 mount_info::conv_to_win32_path:
conv_to_win32_path (/usr/share/locale/en_GB.ISO8859-1)
323 319359 [main] rm 999132 set_flags: flags: binary (0x2)
314 319673 [main] rm 999132 mount_info::conv_to_win32_path: src_path
/usr/share/locale/en_GB.ISO8859-1, dst
D:\cygwin\usr\share\locale\en_GB.ISO8859-1, flags 0x3000A, rc 0
376 320049 [main] rm 999132 symlink_info::check: 0xC0000034 =
NtCreateFile (\??\D:\cygwin\usr\share\locale\en_GB.ISO8859-1)
318 320367 [main] rm 999132 symlink_info::check: 0xC0000034 =
NtQueryInformationFile (\??\D:\cygwin\usr\share\locale\en_GB.ISO8859-1)
383 320750 [main] rm 999132 symlink_info::check: 0xC0000034 =
NtCreateFile (\??\D:\cygwin\usr\share\locale\en_GB.ISO8859-1.lnk)
316 321066 [main] rm 999132 symlink_info::check: 0xC0000034 =
NtQueryInformationFile (\??\D:\cygwin\usr\share\locale\en_GB.ISO8859-1.lnk)
321 321387 [main] rm 999132 symlink_info::check: 0 =
symlink.check(D:\cygwin\usr\share\locale\en_GB.ISO8859-1, 0x22AFD0)
(0x3000A)
315 321702 [main] rm 999132 mount_info::conv_to_win32_path:
conv_to_win32_path (/usr/share/locale)
343 322045 [main] rm 999132 set_flags: flags: binary (0x2)
321 322366 [main] rm 999132 mount_info::conv_to_win32_path: src_path
/usr/share/locale, dst D:\cygwin\usr\share\locale, flags 0x3000A, rc 0
371 322737 [main] rm 999132 symlink_info::check: 0x0 = NtCreateFile
(\??\D:\cygwin\usr\share\locale)
467 323204 [main] rm 999132 symlink_info::check: not a symlink
330 323534 [main] rm 999132 symlink_info::check: 0 =
symlink.check(D:\cygwin\usr\share\locale, 0x22AFD0) (0x3000A)
362 323896 [main] rm 999132 path_conv::check:
this->path(D:\cygwin\usr\share\locale\en_GB.ISO8859-1\LC_MESSAGES\coreutils.mo),
has_acls(1)
351 324247 [main] rm 999132 build_fh_pc: fh 0x180333D90, dev 000000C3
308 324555 [main] rm 999132 fhandler_base::open:
(\??\D:\cygwin\usr\share\locale\en_GB.ISO8859-1\LC_MESSAGES\coreutils.mo, 0x118000)
413 324968 [main] rm 999132 seterrno_from_nt_status:
/home/corinna/src/cygwin/cygwin-2.2.1/cygwin-2.2.1-1.x86_64/src/newlib-cygwin/winsup/cygwin/fhandler.cc:693
status 0xC000003A -> windows error 3
351 325319 [main] rm 999132 geterrno_from_win_error: windows error 3
== errno 2
322 325641 [main] rm 999132 fhandler_base::open: 0xC000003A =
NtCreateFile (0x18006BB83, 0x80100000,
\??\D:\cygwin\usr\share\locale\en_GB.ISO8859-1\LC_MESSAGES\coreutils.mo,
io, NULL, 0x0, 0x7, 0x1, 0x4020, NULL, 0)
337 325978 [main] rm 999132 fhandler_base::open: 0 =
fhandler_base::open(\??\D:\cygwin\usr\share\locale\en_GB.ISO8859-1\LC_MESSAGES\coreutils.mo,
0x118000)
313 326291 [main] rm 999132 fhandler_base::open_fs: 0 =
fhandler_disk_file::open(\??\D:\cygwin\usr\share\locale\en_GB.ISO8859-1\LC_MESSAGES\coreutils.mo,
0x18000)
310 326601 [main] rm 999132 open: -1 =
open(/usr/share/locale/en_GB.ISO8859-1/LC_MESSAGES/coreutils.mo,
0x18000), errno 2
364 326965 [main] rm 999132 open:
open(/usr/share/locale/en_GB.iso88591/LC_MESSAGES/coreutils.mo, 0x10000)
332 327297 [main] rm 999132 normalize_posix_path: src
/usr/share/locale/en_GB.iso88591/LC_MESSAGES/coreutils.mo
318 327615 [main] rm 999132 normalize_posix_path:
/usr/share/locale/en_GB.iso88591/LC_MESSAGES/coreutils.mo =
normalize_posix_path
(/usr/share/locale/en_GB.iso88591/LC_MESSAGES/coreutils.mo)
314 327929 [main] rm 999132 mount_info::conv_to_win32_path:
conv_to_win32_path
(/usr/share/locale/en_GB.iso88591/LC_MESSAGES/coreutils.mo)
314 328243 [main] rm 999132 set_flags: flags: binary (0x2)
308 328551 [main] rm 999132 mount_info::conv_to_win32_path: src_path
/usr/share/locale/en_GB.iso88591/LC_MESSAGES/coreutils.mo, dst
D:\cygwin\usr\share\locale\en_GB.iso88591\LC_MESSAGES\coreutils.mo,
flags 0x3000A, rc 0
376 328927 [main] rm 999132 symlink_info::check: 0xC000003A =
NtCreateFile
(\??\D:\cygwin\usr\share\locale\en_GB.iso88591\LC_MESSAGES\coreutils.mo)
309 329236 [main] rm 999132 symlink_info::check: 0xC000003A =
NtQueryInformationFile
(\??\D:\cygwin\usr\share\locale\en_GB.iso88591\LC_MESSAGES\coreutils.mo)
319 329555 [main] rm 999132 symlink_info::check: not a symlink
309 329864 [main] rm 999132 symlink_info::check: 0 =
symlink.check(D:\cygwin\usr\share\locale\en_GB.iso88591\LC_MESSAGES\coreutils.mo,
0x22AFD0) (0x3000A)
322 330186 [main] rm 999132 mount_info::conv_to_win32_path:
conv_to_win32_path (/usr/share/locale/en_GB.iso88591/LC_MESSAGES)
313 330499 [main] rm 999132 set_flags: flags: binary (0x2)
312 330811 [main] rm 999132 mount_info::conv_to_win32_path: src_path
/usr/share/locale/en_GB.iso88591/LC_MESSAGES, dst
D:\cygwin\usr\share\locale\en_GB.iso88591\LC_MESSAGES, flags 0x3000A, rc 0
536 331347 [main] rm 999132 symlink_info::check: 0xC000003A =
NtCreateFile (\??\D:\cygwin\usr\share\locale\en_GB.iso88591\LC_MESSAGES)
339 331686 [main] rm 999132 symlink_info::check: 0xC000003A =
NtQueryInformationFile
(\??\D:\cygwin\usr\share\locale\en_GB.iso88591\LC_MESSAGES)
321 332007 [main] rm 999132 symlink_info::check: not a symlink
358 332365 [main] rm 999132 symlink_info::check: 0 =
symlink.check(D:\cygwin\usr\share\locale\en_GB.iso88591\LC_MESSAGES,
0x22AFD0) (0x3000A)
327 332692 [main] rm 999132 mount_info::conv_to_win32_path:
conv_to_win32_path (/usr/share/locale/en_GB.iso88591)
321 333013 [main] rm 999132 set_flags: flags: binary (0x2)
342 333355 [main] rm 999132 mount_info::conv_to_win32_path: src_path
/usr/share/locale/en_GB.iso88591, dst
D:\cygwin\usr\share\locale\en_GB.iso88591, flags 0x3000A, rc 0
376 333731 [main] rm 999132 symlink_info::check: 0xC0000034 =
NtCreateFile (\??\D:\cygwin\usr\share\locale\en_GB.iso88591)
323 334054 [main] rm 999132 symlink_info::check: 0xC0000034 =
NtQueryInformationFile (\??\D:\cygwin\usr\share\locale\en_GB.iso88591)
410 334464 [main] rm 999132 symlink_info::check: 0xC0000034 =
NtCreateFile (\??\D:\cygwin\usr\share\locale\en_GB.iso88591.lnk)
351 334815 [main] rm 999132 symlink_info::check: 0xC0000034 =
NtQueryInformationFile (\??\D:\cygwin\usr\share\locale\en_GB.iso88591.lnk)
336 335151 [main] rm 999132 symlink_info::check: 0 =
symlink.check(D:\cygwin\usr\share\locale\en_GB.iso88591, 0x22AFD0) (0x3000A)
348 335499 [main] rm 999132 mount_info::conv_to_win32_path:
conv_to_win32_path (/usr/share/locale)
306 335805 [main] rm 999132 set_flags: flags: binary (0x2)
321 336126 [main] rm 999132 mount_info::conv_to_win32_path: src_path
/usr/share/locale, dst D:\cygwin\usr\share\locale, flags 0x3000A, rc 0
351 336477 [main] rm 999132 symlink_info::check: 0x0 = NtCreateFile
(\??\D:\cygwin\usr\share\locale)
329 336806 [main] rm 999132 symlink_info::check: not a symlink
343 337149 [main] rm 999132 symlink_info::check: 0 =
symlink.check(D:\cygwin\usr\share\locale, 0x22AFD0) (0x3000A)
319 337468 [main] rm 999132 path_conv::check:
this->path(D:\cygwin\usr\share\locale\en_GB.iso88591\LC_MESSAGES\coreutils.mo),
has_acls(1)
375 337843 [main] rm 999132 build_fh_pc: fh 0x180333D90, dev 000000C3
338 338181 [main] rm 999132 fhandler_base::open:
(\??\D:\cygwin\usr\share\locale\en_GB.iso88591\LC_MESSAGES\coreutils.mo,
0x118000)
375 338556 [main] rm 999132 seterrno_from_nt_status:
/home/corinna/src/cygwin/cygwin-2.2.1/cygwin-2.2.1-1.x86_64/src/newlib-cygwin/winsup/cygwin/fhandler.cc:693
status 0xC000003A -> windows error 3
344 338900 [main] rm 999132 geterrno_from_win_error: windows error 3
== errno 2
312 339212 [main] rm 999132 fhandler_base::open: 0xC000003A =
NtCreateFile (0x18006BB83, 0x80100000,
\??\D:\cygwin\usr\share\locale\en_GB.iso88591\LC_MESSAGES\coreutils.mo,
io, NULL, 0x0, 0x7, 0x1, 0x4020, NULL, 0)
348 339560 [main] rm 999132 fhandler_base::open: 0 =
fhandler_base::open(\??\D:\cygwin\usr\share\locale\en_GB.iso88591\LC_MESSAGES\coreutils.mo,
0x118000)
326 339886 [main] rm 999132 fhandler_base::open_fs: 0 =
fhandler_disk_file::open(\??\D:\cygwin\usr\share\locale\en_GB.iso88591\LC_MESSAGES\coreutils.mo,
0x18000)
329 340215 [main] rm 999132 open: -1 =
open(/usr/share/locale/en_GB.iso88591/LC_MESSAGES/coreutils.mo,
0x18000), errno 2
386 340601 [main] rm 999132 open:
open(/usr/share/locale/en_GB/LC_MESSAGES/coreutils.mo, 0x10000)
324 340925 [main] rm 999132 normalize_posix_path: src
/usr/share/locale/en_GB/LC_MESSAGES/coreutils.mo
344 341269 [main] rm 999132 normalize_posix_path:
/usr/share/locale/en_GB/LC_MESSAGES/coreutils.mo = normalize_posix_path
(/usr/share/locale/en_GB/LC_MESSAGES/coreutils.mo)
359 341628 [main] rm 999132 mount_info::conv_to_win32_path:
conv_to_win32_path (/usr/share/locale/en_GB/LC_MESSAGES/coreutils.mo)
327 341955 [main] rm 999132 set_flags: flags: binary (0x2)
324 342279 [main] rm 999132 mount_info::conv_to_win32_path: src_path
/usr/share/locale/en_GB/LC_MESSAGES/coreutils.mo, dst
D:\cygwin\usr\share\locale\en_GB\LC_MESSAGES\coreutils.mo, flags
0x3000A, rc 0
377 342656 [main] rm 999132 symlink_info::check: 0xC0000034 =
NtCreateFile (\??\D:\cygwin\usr\share\locale\en_GB\LC_MESSAGES\coreutils.mo)
307 342963 [main] rm 999132 symlink_info::check: 0xC0000034 =
NtQueryInformationFile
(\??\D:\cygwin\usr\share\locale\en_GB\LC_MESSAGES\coreutils.mo)
367 343330 [main] rm 999132 symlink_info::check: 0xC0000034 =
NtCreateFile
(\??\D:\cygwin\usr\share\locale\en_GB\LC_MESSAGES\coreutils.mo.exe)
308 343638 [main] rm 999132 symlink_info::check: 0xC0000034 =
NtQueryInformationFile
(\??\D:\cygwin\usr\share\locale\en_GB\LC_MESSAGES\coreutils.mo.exe)
344 343982 [main] rm 999132 symlink_info::check: 0xC0000034 =
NtCreateFile
(\??\D:\cygwin\usr\share\locale\en_GB\LC_MESSAGES\coreutils.mo.lnk)
342 344324 [main] rm 999132 symlink_info::check: 0xC0000034 =
NtQueryInformationFile
(\??\D:\cygwin\usr\share\locale\en_GB\LC_MESSAGES\coreutils.mo.lnk)
373 344697 [main] rm 999132 symlink_info::check: 0xC0000034 =
NtCreateFile
(\??\D:\cygwin\usr\share\locale\en_GB\LC_MESSAGES\coreutils.mo.exe.lnk)
330 345027 [main] rm 999132 symlink_info::check: 0xC0000034 =
NtQueryInformationFile
(\??\D:\cygwin\usr\share\locale\en_GB\LC_MESSAGES\coreutils.mo.exe.lnk)
320 345347 [main] rm 999132 symlink_info::check: 0 =
symlink.check(D:\cygwin\usr\share\locale\en_GB\LC_MESSAGES\coreutils.mo,
0x22AFD0) (0x3000A)
322 345669 [main] rm 999132 mount_info::conv_to_win32_path:
conv_to_win32_path (/usr/share/locale/en_GB/LC_MESSAGES)
318 345987 [main] rm 999132 set_flags: flags: binary (0x2)
325 346312 [main] rm 999132 mount_info::conv_to_win32_path: src_path
/usr/share/locale/en_GB/LC_MESSAGES, dst
D:\cygwin\usr\share\locale\en_GB\LC_MESSAGES, flags 0x3000A, rc 0
362 346674 [main] rm 999132 symlink_info::check: 0x0 = NtCreateFile
(\??\D:\cygwin\usr\share\locale\en_GB\LC_MESSAGES)
356 347030 [main] rm 999132 symlink_info::check: not a symlink
353 347383 [main] rm 999132 symlink_info::check: 0 =
symlink.check(D:\cygwin\usr\share\locale\en_GB\LC_MESSAGES, 0x22AFD0)
(0x3000A)
322 347705 [main] rm 999132 path_conv::check:
this->path(D:\cygwin\usr\share\locale\en_GB\LC_MESSAGES\coreutils.mo),
has_acls(1)
314 348019 [main] rm 999132 build_fh_pc: fh 0x180333D90, dev 000000C3
337 348356 [main] rm 999132 fhandler_base::open:
(\??\D:\cygwin\usr\share\locale\en_GB\LC_MESSAGES\coreutils.mo, 0x118000)
362 348718 [main] rm 999132 seterrno_from_nt_status:
/home/corinna/src/cygwin/cygwin-2.2.1/cygwin-2.2.1-1.x86_64/src/newlib-cygwin/winsup/cygwin/fhandler.cc:693
status 0xC0000034 -> windows error 2
321 349039 [main] rm 999132 geterrno_from_win_error: windows error 2
== errno 2
329 349368 [main] rm 999132 fhandler_base::open: 0xC0000034 =
NtCreateFile (0x18006BB83, 0x80100000,
\??\D:\cygwin\usr\share\locale\en_GB\LC_MESSAGES\coreutils.mo, io, NULL,
0x0, 0x7, 0x1, 0x4020, NULL, 0)
336 349704 [main] rm 999132 fhandler_base::open: 0 =
fhandler_base::open(\??\D:\cygwin\usr\share\locale\en_GB\LC_MESSAGES\coreutils.mo,
0x118000)
309 350013 [main] rm 999132 fhandler_base::open_fs: 0 =
fhandler_disk_file::open(\??\D:\cygwin\usr\share\locale\en_GB\LC_MESSAGES\coreutils.mo,
0x18000)
309 350322 [main] rm 999132 open: -1 =
open(/usr/share/locale/en_GB/LC_MESSAGES/coreutils.mo, 0x18000), errno 2
578 350900 [main] rm 999132 open:
open(/usr/share/locale/en.ISO8859-1/LC_MESSAGES/coreutils.mo, 0x10000)
366 351266 [main] rm 999132 normalize_posix_path: src
/usr/share/locale/en.ISO8859-1/LC_MESSAGES/coreutils.mo
352 351618 [main] rm 999132 normalize_posix_path:
/usr/share/locale/en.ISO8859-1/LC_MESSAGES/coreutils.mo =
normalize_posix_path
(/usr/share/locale/en.ISO8859-1/LC_MESSAGES/coreutils.mo)
402 352020 [main] rm 999132 mount_info::conv_to_win32_path:
conv_to_win32_path (/usr/share/locale/en.ISO8859-1/LC_MESSAGES/coreutils.mo)
423 352443 [main] rm 999132 set_flags: flags: binary (0x2)
344 352787 [main] rm 999132 mount_info::conv_to_win32_path: src_path
/usr/share/locale/en.ISO8859-1/LC_MESSAGES/coreutils.mo, dst
D:\cygwin\usr\share\locale\en.ISO8859-1\LC_MESSAGES\coreutils.mo, flags
0x3000A, rc 0
412 353199 [main] rm 999132 symlink_info::check: 0xC000003A =
NtCreateFile
(\??\D:\cygwin\usr\share\locale\en.ISO8859-1\LC_MESSAGES\coreutils.mo)
390 353589 [main] rm 999132 symlink_info::check: 0xC000003A =
NtQueryInformationFile
(\??\D:\cygwin\usr\share\locale\en.ISO8859-1\LC_MESSAGES\coreutils.mo)
334 353923 [main] rm 999132 symlink_info::check: not a symlink
325 354248 [main] rm 999132 symlink_info::check: 0 =
symlink.check(D:\cygwin\usr\share\locale\en.ISO8859-1\LC_MESSAGES\coreutils.mo,
0x22AFD0) (0x3000A)
358 354606 [main] rm 999132 mount_info::conv_to_win32_path:
conv_to_win32_path (/usr/share/locale/en.ISO8859-1/LC_MESSAGES)
325 354931 [main] rm 999132 set_flags: flags: binary (0x2)
344 355275 [main] rm 999132 mount_info::conv_to_win32_path: src_path
/usr/share/locale/en.ISO8859-1/LC_MESSAGES, dst
D:\cygwin\usr\share\locale\en.ISO8859-1\LC_MESSAGES, flags 0x3000A, rc 0
371 355646 [main] rm 999132 symlink_info::check: 0xC000003A =
NtCreateFile (\??\D:\cygwin\usr\share\locale\en.ISO8859-1\LC_MESSAGES)
318 355964 [main] rm 999132 symlink_info::check: 0xC000003A =
NtQueryInformationFile
(\??\D:\cygwin\usr\share\locale\en.ISO8859-1\LC_MESSAGES)
338 356302 [main] rm 999132 symlink_info::check: not a symlink
362 356664 [main] rm 999132 symlink_info::check: 0 =
symlink.check(D:\cygwin\usr\share\locale\en.ISO8859-1\LC_MESSAGES,
0x22AFD0) (0x3000A)
324 356988 [main] rm 999132 mount_info::conv_to_win32_path:
conv_to_win32_path (/usr/share/locale/en.ISO8859-1)
315 357303 [main] rm 999132 set_flags: flags: binary (0x2)
341 357644 [main] rm 999132 mount_info::conv_to_win32_path: src_path
/usr/share/locale/en.ISO8859-1, dst
D:\cygwin\usr\share\locale\en.ISO8859-1, flags 0x3000A, rc 0
365 358009 [main] rm 999132 symlink_info::check: 0xC0000034 =
NtCreateFile (\??\D:\cygwin\usr\share\locale\en.ISO8859-1)
324 358333 [main] rm 999132 symlink_info::check: 0xC0000034 =
NtQueryInformationFile (\??\D:\cygwin\usr\share\locale\en.ISO8859-1)
357 358690 [main] rm 999132 symlink_info::check: 0xC0000034 =
NtCreateFile (\??\D:\cygwin\usr\share\locale\en.ISO8859-1.lnk)
316 359006 [main] rm 999132 symlink_info::check: 0xC0000034 =
NtQueryInformationFile (\??\D:\cygwin\usr\share\locale\en.ISO8859-1.lnk)
338 359344 [main] rm 999132 symlink_info::check: 0 =
symlink.check(D:\cygwin\usr\share\locale\en.ISO8859-1, 0x22AFD0) (0x3000A)
309 359653 [main] rm 999132 mount_info::conv_to_win32_path:
conv_to_win32_path (/usr/share/locale)
336 359989 [main] rm 999132 set_flags: flags: binary (0x2)
352 360341 [main] rm 999132 mount_info::conv_to_win32_path: src_path
/usr/share/locale, dst D:\cygwin\usr\share\locale, flags 0x3000A, rc 0
357 360698 [main] rm 999132 symlink_info::check: 0x0 = NtCreateFile
(\??\D:\cygwin\usr\share\locale)
355 361053 [main] rm 999132 symlink_info::check: not a symlink
331 361384 [main] rm 999132 symlink_info::check: 0 =
symlink.check(D:\cygwin\usr\share\locale, 0x22AFD0) (0x3000A)
396 361780 [main] rm 999132 path_conv::check:
this->path(D:\cygwin\usr\share\locale\en.ISO8859-1\LC_MESSAGES\coreutils.mo),
has_acls(1)
338 362118 [main] rm 999132 build_fh_pc: fh 0x180333D90, dev 000000C3
336 362454 [main] rm 999132 fhandler_base::open:
(\??\D:\cygwin\usr\share\locale\en.ISO8859-1\LC_MESSAGES\coreutils.mo,
0x118000)
422 362876 [main] rm 999132 seterrno_from_nt_status:
/home/corinna/src/cygwin/cygwin-2.2.1/cygwin-2.2.1-1.x86_64/src/newlib-cygwin/winsup/cygwin/fhandler.cc:693
status 0xC000003A -> windows error 3
349 363225 [main] rm 999132 geterrno_from_win_error: windows error 3
== errno 2
338 363563 [main] rm 999132 fhandler_base::open: 0xC000003A =
NtCreateFile (0x18006BB83, 0x80100000,
\??\D:\cygwin\usr\share\locale\en.ISO8859-1\LC_MESSAGES\coreutils.mo,
io, NULL, 0x0, 0x7, 0x1, 0x4020, NULL, 0)
461 364024 [main] rm 999132 fhandler_base::open: 0 =
fhandler_base::open(\??\D:\cygwin\usr\share\locale\en.ISO8859-1\LC_MESSAGES\coreutils.mo,
0x118000)
324 364348 [main] rm 999132 fhandler_base::open_fs: 0 =
fhandler_disk_file::open(\??\D:\cygwin\usr\share\locale\en.ISO8859-1\LC_MESSAGES\coreutils.mo,
0x18000)
328 364676 [main] rm 999132 open: -1 =
open(/usr/share/locale/en.ISO8859-1/LC_MESSAGES/coreutils.mo, 0x18000),
errno 2
410 365086 [main] rm 999132 open:
open(/usr/share/locale/en.iso88591/LC_MESSAGES/coreutils.mo, 0x10000)
322 365408 [main] rm 999132 normalize_posix_path: src
/usr/share/locale/en.iso88591/LC_MESSAGES/coreutils.mo
338 365746 [main] rm 999132 normalize_posix_path:
/usr/share/locale/en.iso88591/LC_MESSAGES/coreutils.mo =
normalize_posix_path
(/usr/share/locale/en.iso88591/LC_MESSAGES/coreutils.mo)
399 366145 [main] rm 999132 mount_info::conv_to_win32_path:
conv_to_win32_path (/usr/share/locale/en.iso88591/LC_MESSAGES/coreutils.mo)
450 366595 [main] rm 999132 set_flags: flags: binary (0x2)
335661 702256 [main] rm 999132 mount_info::conv_to_win32_path: src_path
/usr/share/locale/en.iso88591/LC_MESSAGES/coreutils.mo, dst
D:\cygwin\usr\share\locale\en.iso88591\LC_MESSAGES\coreutils.mo, flags
0x3000A, rc 0
533 702789 [main] rm 999132 symlink_info::check: 0xC000003A =
NtCreateFile
(\??\D:\cygwin\usr\share\locale\en.iso88591\LC_MESSAGES\coreutils.mo)
353 703142 [main] rm 999132 symlink_info::check: 0xC000003A =
NtQueryInformationFile
(\??\D:\cygwin\usr\share\locale\en.iso88591\LC_MESSAGES\coreutils.mo)
354 703496 [main] rm 999132 symlink_info::check: not a symlink
359 703855 [main] rm 999132 symlink_info::check: 0 =
symlink.check(D:\cygwin\usr\share\locale\en.iso88591\LC_MESSAGES\coreutils.mo,
0x22AFD0) (0x3000A)
355 704210 [main] rm 999132 mount_info::conv_to_win32_path:
conv_to_win32_path (/usr/share/locale/en.iso88591/LC_MESSAGES)
360 704570 [main] rm 999132 set_flags: flags: binary (0x2)
368 704938 [main] rm 999132 mount_info::conv_to_win32_path: src_path
/usr/share/locale/en.iso88591/LC_MESSAGES, dst
D:\cygwin\usr\share\locale\en.iso88591\LC_MESSAGES, flags 0x3000A, rc 0
411 705349 [main] rm 999132 symlink_info::check: 0xC000003A =
NtCreateFile (\??\D:\cygwin\usr\share\locale\en.iso88591\LC_MESSAGES)
348 705697 [main] rm 999132 symlink_info::check: 0xC000003A =
NtQueryInformationFile
(\??\D:\cygwin\usr\share\locale\en.iso88591\LC_MESSAGES)
359 706056 [main] rm 999132 symlink_info::check: not a symlink
339 706395 [main] rm 999132 symlink_info::check: 0 =
symlink.check(D:\cygwin\usr\share\locale\en.iso88591\LC_MESSAGES,
0x22AFD0) (0x3000A)
428 706823 [main] rm 999132 mount_info::conv_to_win32_path:
conv_to_win32_path (/usr/share/locale/en.iso88591)
330 707153 [main] rm 999132 set_flags: flags: binary (0x2)
379 707532 [main] rm 999132 mount_info::conv_to_win32_path: src_path
/usr/share/locale/en.iso88591, dst
D:\cygwin\usr\share\locale\en.iso88591, flags 0x3000A, rc 0
398 707930 [main] rm 999132 symlink_info::check: 0xC0000034 =
NtCreateFile (\??\D:\cygwin\usr\share\locale\en.iso88591)
346 708276 [main] rm 999132 symlink_info::check: 0xC0000034 =
NtQueryInformationFile (\??\D:\cygwin\usr\share\locale\en.iso88591)
382 708658 [main] rm 999132 symlink_info::check: 0xC0000034 =
NtCreateFile (\??\D:\cygwin\usr\share\locale\en.iso88591.lnk)
344 709002 [main] rm 999132 symlink_info::check: 0xC0000034 =
NtQueryInformationFile (\??\D:\cygwin\usr\share\locale\en.iso88591.lnk)
342 709344 [main] rm 999132 symlink_info::check: 0 =
symlink.check(D:\cygwin\usr\share\locale\en.iso88591, 0x22AFD0) (0x3000A)
344 709688 [main] rm 999132 mount_info::conv_to_win32_path:
conv_to_win32_path (/usr/share/locale)
338 710026 [main] rm 999132 set_flags: flags: binary (0x2)
346 710372 [main] rm 999132 mount_info::conv_to_win32_path: src_path
/usr/share/locale, dst D:\cygwin\usr\share\locale, flags 0x3000A, rc 0
383 710755 [main] rm 999132 symlink_info::check: 0x0 = NtCreateFile
(\??\D:\cygwin\usr\share\locale)
342 711097 [main] rm 999132 symlink_info::check: not a symlink
339 711436 [main] rm 999132 symlink_info::check: 0 =
symlink.check(D:\cygwin\usr\share\locale, 0x22AFD0) (0x3000A)
345 711781 [main] rm 999132 path_conv::check:
this->path(D:\cygwin\usr\share\locale\en.iso88591\LC_MESSAGES\coreutils.mo),
has_acls(1)
354 712135 [main] rm 999132 build_fh_pc: fh 0x180333D90, dev 000000C3
336 712471 [main] rm 999132 fhandler_base::open:
(\??\D:\cygwin\usr\share\locale\en.iso88591\LC_MESSAGES\coreutils.mo,
0x118000)
390 712861 [main] rm 999132 seterrno_from_nt_status:
/home/corinna/src/cygwin/cygwin-2.2.1/cygwin-2.2.1-1.x86_64/src/newlib-cygwin/winsup/cygwin/fhandler.cc:693
status 0xC000003A -> windows error 3
353 713214 [main] rm 999132 geterrno_from_win_error: windows error 3
== errno 2
336 713550 [main] rm 999132 fhandler_base::open: 0xC000003A =
NtCreateFile (0x18006BB83, 0x80100000,
\??\D:\cygwin\usr\share\locale\en.iso88591\LC_MESSAGES\coreutils.mo, io,
NULL, 0x0, 0x7, 0x1, 0x4020, NULL, 0)
335 713885 [main] rm 999132 fhandler_base::open: 0 =
fhandler_base::open(\??\D:\cygwin\usr\share\locale\en.iso88591\LC_MESSAGES\coreutils.mo,
0x118000)
327 714212 [main] rm 999132 fhandler_base::open_fs: 0 =
fhandler_disk_file::open(\??\D:\cygwin\usr\share\locale\en.iso88591\LC_MESSAGES\coreutils.mo,
0x18000)
349 714561 [main] rm 999132 open: -1 =
open(/usr/share/locale/en.iso88591/LC_MESSAGES/coreutils.mo, 0x18000),
errno 2
380 714941 [main] rm 999132 open:
open(/usr/share/locale/en/LC_MESSAGES/coreutils.mo, 0x10000)
325 715266 [main] rm 999132 normalize_posix_path: src
/usr/share/locale/en/LC_MESSAGES/coreutils.mo
319 715585 [main] rm 999132 normalize_posix_path:
/usr/share/locale/en/LC_MESSAGES/coreutils.mo = normalize_posix_path
(/usr/share/locale/en/LC_MESSAGES/coreutils.mo)
331 715916 [main] rm 999132 mount_info::conv_to_win32_path:
conv_to_win32_path (/usr/share/locale/en/LC_MESSAGES/coreutils.mo)
322 716238 [main] rm 999132 set_flags: flags: binary (0x2)
311 716549 [main] rm 999132 mount_info::conv_to_win32_path: src_path
/usr/share/locale/en/LC_MESSAGES/coreutils.mo, dst
D:\cygwin\usr\share\locale\en\LC_MESSAGES\coreutils.mo, flags 0x3000A, rc 0
397 716946 [main] rm 999132 symlink_info::check: 0xC0000034 =
NtCreateFile (\??\D:\cygwin\usr\share\locale\en\LC_MESSAGES\coreutils.mo)
330 717276 [main] rm 999132 symlink_info::check: 0xC0000034 =
NtQueryInformationFile
(\??\D:\cygwin\usr\share\locale\en\LC_MESSAGES\coreutils.mo)
366 717642 [main] rm 999132 symlink_info::check: 0xC0000034 =
NtCreateFile
(\??\D:\cygwin\usr\share\locale\en\LC_MESSAGES\coreutils.mo.exe)
367 718009 [main] rm 999132 symlink_info::check: 0xC0000034 =
NtQueryInformationFile
(\??\D:\cygwin\usr\share\locale\en\LC_MESSAGES\coreutils.mo.exe)
385 718394 [main] rm 999132 symlink_info::check: 0xC0000034 =
NtCreateFile
(\??\D:\cygwin\usr\share\locale\en\LC_MESSAGES\coreutils.mo.lnk)
379 718773 [main] rm 999132 symlink_info::check: 0xC0000034 =
NtQueryInformationFile
(\??\D:\cygwin\usr\share\locale\en\LC_MESSAGES\coreutils.mo.lnk)
437 719210 [main] rm 999132 symlink_info::check: 0xC0000034 =
NtCreateFile
(\??\D:\cygwin\usr\share\locale\en\LC_MESSAGES\coreutils.mo.exe.lnk)
406 719616 [main] rm 999132 symlink_info::check: 0xC0000034 =
NtQueryInformationFile
(\??\D:\cygwin\usr\share\locale\en\LC_MESSAGES\coreutils.mo.exe.lnk)
356 719972 [main] rm 999132 symlink_info::check: 0 =
symlink.check(D:\cygwin\usr\share\locale\en\LC_MESSAGES\coreutils.mo,
0x22AFD0) (0x3000A)
382 720354 [main] rm 999132 mount_info::conv_to_win32_path:
conv_to_win32_path (/usr/share/locale/en/LC_MESSAGES)
368 720722 [main] rm 999132 set_flags: flags: binary (0x2)
423 721145 [main] rm 999132 mount_info::conv_to_win32_path: src_path
/usr/share/locale/en/LC_MESSAGES, dst
D:\cygwin\usr\share\locale\en\LC_MESSAGES, flags 0x3000A, rc 0
445 721590 [main] rm 999132 symlink_info::check: 0x0 = NtCreateFile
(\??\D:\cygwin\usr\share\locale\en\LC_MESSAGES)
364 721954 [main] rm 999132 symlink_info::check: not a symlink
380 722334 [main] rm 999132 symlink_info::check: 0 =
symlink.check(D:\cygwin\usr\share\locale\en\LC_MESSAGES, 0x22AFD0) (0x3000A)
329 722663 [main] rm 999132 path_conv::check:
this->path(D:\cygwin\usr\share\locale\en\LC_MESSAGES\coreutils.mo),
has_acls(1)
354 723017 [main] rm 999132 build_fh_pc: fh 0x180333D90, dev 000000C3
482 723499 [main] rm 999132 fhandler_base::open:
(\??\D:\cygwin\usr\share\locale\en\LC_MESSAGES\coreutils.mo, 0x118000)
395 723894 [main] rm 999132 seterrno_from_nt_status:
/home/corinna/src/cygwin/cygwin-2.2.1/cygwin-2.2.1-1.x86_64/src/newlib-cygwin/winsup/cygwin/fhandler.cc:693
status 0xC0000034 -> windows error 2
327 724221 [main] rm 999132 geterrno_from_win_error: windows error 2
== errno 2
318 724539 [main] rm 999132 fhandler_base::open: 0xC0000034 =
NtCreateFile (0x18006BB83, 0x80100000,
\??\D:\cygwin\usr\share\locale\en\LC_MESSAGES\coreutils.mo, io, NULL,
0x0, 0x7, 0x1, 0x4020, NULL, 0)
323 724862 [main] rm 999132 fhandler_base::open: 0 =
fhandler_base::open(\??\D:\cygwin\usr\share\locale\en\LC_MESSAGES\coreutils.mo,
0x118000)
322 725184 [main] rm 999132 fhandler_base::open_fs: 0 =
fhandler_disk_file::open(\??\D:\cygwin\usr\share\locale\en\LC_MESSAGES\coreutils.mo,
0x18000)
337 725521 [main] rm 999132 open: -1 =
open(/usr/share/locale/en/LC_MESSAGES/coreutils.mo, 0x18000), errno 2
1044 726565 [main] rm 999132 fhandler_console::write: 0x22CB60, 2
476 727041 [main] rm 999132 fhandler_console::write: 2 =
fhandler_console::write(...)
326 727367 [main] rm 999132 write: 2 = write(2, 0x22CB60, 2)
340 727707 [main] rm 999132 fhandler_console::write: 0x18024CA01, 1
391 728098 [main] rm 999132 fhandler_console::write: 1 =
fhandler_console::write(...)
338 728436 [main] rm 999132 write: 1 = write(2, 0x18024CA01, 1)
324 728760 [main] rm 999132 fhandler_console::write: 0x18024C9F5, 1
358 729118 [main] rm 999132 fhandler_console::write: 1 =
fhandler_console::write(...)
324 729442 [main] rm 999132 write: 1 = write(2, 0x18024C9F5, 1)
436 729878 [main] rm 999132 fhandler_console::write: 0x100419CE3, 14
416 730294 [main] rm 999132 fhandler_console::write: 14 =
fhandler_console::write(...)
319 730613 [main] rm 999132 write: 14 = write(2, 0x100419CE3, 14)
321 730934 [main] rm 999132 fhandler_console::write: 0x10041F080, 5
406 731340 [main] rm 999132 fhandler_console::write: 5 =
fhandler_console::write(...)
360 731700 [main] rm 999132 write: 5 = write(2, 0x10041F080, 5)
455 732155 [main] rm 999132 fhandler_console::write: 0x18024CA05, 2
529 732684 [main] rm 999132 fhandler_console::write: 2 =
fhandler_console::write(...)
375 733059 [main] rm 999132 write: 2 = write(2, 0x18024CA05, 2)
400 733459 [main] rm 999132 fhandler_console::write: 0x18024DFD0, 17
411 733870 [main] rm 999132 fhandler_console::write: 17 =
fhandler_console::write(...)
386 734256 [main] rm 999132 write: 17 = write(2, 0x18024DFD0, 17)
565 734821 [main] rm 999132 fhandler_console::write: 0x1801F3A67, 1
478 735299 [main] rm 999132 fhandler_console::write: 1 =
fhandler_console::write(...)
369 735668 [main] rm 999132 write: 1 = write(2, 0x1801F3A67, 1)
694 736362 [main] rm 999132 close: close(0)
316 736678 [main] rm 999132 fhandler_base::close_with_arch: line
1142: /dev/cons1<0x180333430> usecount + -1 = 2
322 737000 [main] rm 999132 fhandler_base::close_with_arch: not
closing archetype
320 737320 [main] rm 999132 close: 0 = close(0)
488 737808 [main] rm 999132 close: close(1)
315 738123 [main] rm 999132 fhandler_base::close: closing
'/cygdrive/h/Device/Mup/ACCOUNTS.INTERN/SHARES/HOME/FEULNERJ/strace.log'
handle 0x17C
330 738453 [main] rm 999132 close: 0 = close(1)
477 738930 [main] rm 999132 close: close(2)
337 739267 [main] rm 999132 fhandler_base::close_with_arch: line
1142: /dev/cons1<0x180333430> usecount + -1 = 1
317 739584 [main] rm 999132 fhandler_base::close_with_arch: not
closing archetype
359 739943 [main] rm 999132 close: 0 = close(2)
482 740425 [main] rm 999132 do_exit: do_exit (256), exit_state 1
324 740749 [main] rm 999132 void: 0x0 = signal (20, 0x1)
351 741100 [main] rm 999132 void: 0x0 = signal (1, 0x1)
326 741426 [main] rm 999132 void: 0x0 = signal (2, 0x1)
324 741750 [main] rm 999132 void: 0x0 = signal (3, 0x1)
315 742065 [main] rm 999132 init_cygheap::close_ctty: closing
cygheap->ctty 0x180333430
334 742399 [main] rm 999132 fhandler_base::close_with_arch: closing
passed in archetype 0x0, usecount 0
465 742864 [main] rm 999132 fhandler_console::free_console: freed
console, res 1
347 743211 [main] rm 999132 dtable::delete_archetype: deleting
element 0 for /dev/cons1(3/1)
350 743561 [main] rm 999132 getpid: 999132 = getpid()
339 743900 [main] rm 999132 proc_terminate: nprocs 0
321 744221 [main] rm 999132 proc_terminate: leaving
345 744566 [main] rm 999132 pinfo::exit: Calling ExitProcess n
0x100, exitcode 0x1
--- Process 999132 thread 999108 exited with status 0x1
--- Process 999132 thread 997076 exited with status 0x1
--- Process 999132 thread 997064 exited with status 0x1
--- Process 999132 exited with status 0x1
=
--
Problem reports: http://cygwin.com/problems.html
FAQ: http://cygwin.com/faq/
Documentation: http://cygwin.com/docs.html
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
- Raw text -