Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[PATCH] add shortcut around syscalls when file not found in win32_stat #15169

Closed
p5pRT opened this issue Feb 10, 2016 · 9 comments
Closed

[PATCH] add shortcut around syscalls when file not found in win32_stat #15169

p5pRT opened this issue Feb 10, 2016 · 9 comments

Comments

@p5pRT
Copy link

p5pRT commented Feb 10, 2016

Migrated from rt.perl.org#127508 (status was 'resolved')

Searchable as RT127508$

@p5pRT
Copy link
Author

p5pRT commented Feb 10, 2016

From @bulk88

Created by @bulk88

See attached patch.

before

C​:\p523\src>timeit -f t.dat perl -e" -e 'nofile' for 0..100000"

Version Number​: Windows NT 6.1 (Build 7601)
Exit Time​: 1​:18 am, Wednesday, February 10 2016
Elapsed Time​: 0​:00​:09.126
Process Time​: 0​:00​:09.094
System Calls​: 603742
Context Switches​: 11107
Page Faults​: 2756
Bytes Read​: 208496
Bytes Written​: 0
Bytes Other​: 3390

C​:\p523\src>

after

C​:\p523\src>timeit -f t.dat perl -e" -e 'nofile' for 0..100000"

Version Number​: Windows NT 6.1 (Build 7601)
Exit Time​: 1​:14 am, Wednesday, February 10 2016
Elapsed Time​: 0​:00​:02.480
Process Time​: 0​:00​:02.464
System Calls​: 175393
Context Switches​: 8048
Page Faults​: 1374
Bytes Read​: 207793
Bytes Written​: 0
Bytes Other​: 1107588

Perl Info

Flags:
     category=core
     severity=low

Site configuration information for perl 5.23.5:

Configured by Owner at Sun Oct 25 19:14:27 2015.

Summary of my perl5 (revision 5 version 23 subversion 5) configuration:
   Derived from: 644207b7a8ff7a2b1661c05a7f9ac2df9a5dad91
   Platform:
     osname=MSWin32, osvers=6.1, archname=MSWin32-x86-multi-thread
     uname=''
     config_args='undef'
     hint=recommended, useposix=true, d_sigaction=undef
     useithreads=define, usemultiplicity=define
     use64bitint=undef, use64bitall=undef, uselongdouble=undef
     usemymalloc=n, bincompat5005=undef
   Compiler:
     cc='cl', ccflags ='-nologo -GF -W3 -O1 -MD -Zi -DNDEBUG -GL -DWIN32 
-D_CONSOLE -DNO_STRICT -D_CRT_SECURE_NO_DEPRECATE 
-D_CRT_NONSTDC_NO_DEPRECATE  -DPERL_TEXTMODE_SCRIPTS 
-DPERL_IMPLICIT_CONTEXT -DPERL_IMPLICIT_SYS',
     optimize='-O1 -MD -Zi -DNDEBUG -GL',
     cppflags='-DWIN32'
     ccversion='18.00.31101', gccversion='', gccosandvers=''
     intsize=4, longsize=4, ptrsize=4, doublesize=8, byteorder=1234, 
doublekind=3
     d_longlong=undef, longlongsize=8, d_longdbl=define, longdblsize=8, 
longdblkind=0
     ivtype='long', ivsize=4, nvtype='double', nvsize=8, 
Off_t='__int64', lseeksize=8
     alignbytes=8, prototype=define
   Linker and Libraries:
     ld='link', ldflags ='-nologo -nodefaultlib -debug -opt:ref,icf 
-ltcg         -libpath:"c:\p523\lib\CORE"         -machine:x86 
"/manifestdependency:type='Win32' 
name='Microsoft.Windows.Common-Controls' version='6.0.0.0' 
processorArchitecture='*' publicKeyToken='6595b64144ccf1df' 
language='*'" -subsystem:console,"5.01"'
     libpth=\lib
     libs=oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.lib 
comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib 
netapi32.lib uuid.lib ws2_32.lib mpr.lib winmm.lib version.lib 
odbc32.lib odbccp32.lib comctl32.lib msvcrt.lib
     perllibs=oldnames.lib kernel32.lib user32.lib gdi32.lib 
winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib 
oleaut32.lib netapi32.lib uuid.lib ws2_32.lib mpr.lib winmm.lib 
version.lib odbc32.lib odbccp32.lib comctl32.lib msvcrt.lib
     libc=msvcrt.lib, so=dll, useshrplib=true, libperl=perl523.lib
     gnulibc_version=''
   Dynamic Linking:
     dlsrc=dl_win32.xs, dlext=dll, d_dlsymun=undef, ccdlflags=' '
     cccdlflags=' ', lddlflags='-dll -nologo -nodefaultlib -debug 
-opt:ref,icf -ltcg         -libpath:"c:\p523\lib\CORE"  -machine:x86 
"/manifestdependency:type='Win32' 
name='Microsoft.Windows.Common-Controls' version='6.0.0.0' 
processorArchitecture='*' publicKeyToken='6595b64144ccf1df' 
language='*'" -subsystem:console,"5.01"'

Locally applied patches:
     uncommitted-changes


@INC for perl 5.23.5:
     C:/p523/site/lib
     C:/p523/lib
     .


Environment for perl 5.23.5:
     HOME (unset)
     LANG (unset)
     LANGUAGE (unset)
     LD_LIBRARY_PATH (unset)
     LOGDIR (unset)
     PATH=C:\p523\site\bin;C:\p523\bin;C:\Program Files\ActiveState 
Komodo Edit 
9\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program 
Files\TortoiseGit\bin;C:\Program Files\Microsoft Windows Performance 
Toolkit\;C:\Program Files\Microsoft SQL 
Server\110\Tools\Binn\;C:\Program Files\Microsoft 
SDKs\TypeScript\1.0\;C:\Program Files\TortoiseHg\;
     PERL_BADLANG (unset)
     SHELL (unset)


@p5pRT
Copy link
Author

p5pRT commented Feb 10, 2016

From @bulk88

0001-add-shortcut-around-syscalls-when-file-not-found-in-.patch
From 216a69b1f9c8f0133f186b8a7c04d1d24ee8df15 Mon Sep 17 00:00:00 2001
From: Daniel Dragan <bulk88@hotmail.com>
Date: Wed, 10 Feb 2016 15:47:44 -0500
Subject: [PATCH] add shortcut around syscalls when file not found in
 win32_stat

win32_stat on success makes ~7 system calls, some from perl, some from CRT,
but on failure, typically file not found, the perl syscalls fails, then the
CRT stat runs, and fails too, so 5 mostly failing system calls are done
for file not found. If the perl syscall says file not found, the
file wont magically come into existence in the next 10-1000 us for the
CRT's syscalls, so skip calling the CRT and the additional syscalls
if the perl didn't find the file. This patch reduces the number of syscalls
from 5 to 1 for file not found for a win32 perl stat. Benchmark and
profiling info is attached to RT ticket for this patch. Note CreateFile on
a dir fails with ERROR_ACCESS_DENIED so in some cases, a failed CreateFile
is still a successful CRT stat() which does things differently so dirs can
be opened.
---
 pod/perldelta.pod | 5 +++++
 win32/win32.c     | 8 ++++++++
 2 files changed, 13 insertions(+)

diff --git a/pod/perldelta.pod b/pod/perldelta.pod
index 0a7d4b0..d95df70 100644
--- a/pod/perldelta.pod
+++ b/pod/perldelta.pod
@@ -102,6 +102,11 @@ This empty function call now takes about a third less time to execute:
 
     sub f{} f();
 
+=item *
+
+On Win32, C<stat>ing or C<-X>ing a path, if the file or directory does not exist
+is now 3.5x faster on a SSD (or any drive) than before.
+
 =back
 
 =head1 Modules and Pragmata
diff --git a/win32/win32.c b/win32/win32.c
index b410f66..651b97b 100644
--- a/win32/win32.c
+++ b/win32/win32.c
@@ -1514,6 +1514,14 @@ win32_stat(const char *path, Stat_t *sbuf)
                 nlink = bhi.nNumberOfLinks;
             CloseHandle(handle);
         }
+	else {
+	    DWORD err = GetLastError();
+	    /* very common case, skip CRT stat and its also failing syscalls */
+	    if(err == ERROR_FILE_NOT_FOUND) {
+		errno = ENOENT;
+		return -1;
+	    }
+	}
     }
 
     /* path will be mapped correctly above */
-- 
1.9.5.msysgit.1

@p5pRT
Copy link
Author

p5pRT commented Feb 10, 2016

From @bulk88

"Time of Day","Process Name","PID","Path","Operation","Result","Detail"
"1​:21​:15.0558003 AM","perl.exe","3040","","Process Start","SUCCESS","Parent PID​: 2456, Command line​: perl -e"" -e 'nofile' for 0..10"", Current directory​: C​:\p523\src\, Environment​:
; =​::=​::\
; =C​:=C​:\p523\src
; =ExitCode=00000000
; ALLUSERSPROFILE=C​:\ProgramData
; APPDATA=C​:\Users\Owner\AppData\Roaming
; CommonProgramFiles=C​:\Program Files\Common Files
; COMPUTERNAME=DELLWIN7
; ComSpec=C​:\Windows\system32\cmd.exe
; DevEnvDir=C​:\Program Files\Microsoft Visual Studio 12.0\Common7\IDE\
; EMAIL=bulk88@​hotmail.com
; ExtensionSdkDir=C​:\Program Files\Microsoft SDKs\Windows\v8.1\ExtensionSDKs
; FP_NO_HOST_CHECK=NO
; Framework40Version=v4.0
; FrameworkDir=C​:\Windows\Microsoft.NET\Framework\
; FrameworkDIR32=C​:\Windows\Microsoft.NET\Framework\
; FrameworkVersion=v4.0.30319
; FrameworkVersion32=v4.0.30319
; FSHARPINSTALLDIR=C​:\Program Files\Microsoft SDKs\F#\3.1\Framework\v4.0\
; FTP_PASSIVE=1
; HOMEDRIVE=C​:
; HOMEPATH=\Users\Owner
; INCLUDE=C​:\Program Files\Microsoft Visual Studio 12.0\VC\INCLUDE;C​:\Program Files\Microsoft Visual Studio 12.0\VC\ATLMFC\INCLUDE;C​:\Program Files\Windows Kits\8.1\include\shared;C​:\Program Files\Windows Kits\8.1\include\um;C​:\Program Files\Windows Kits\8.1\include\winrt;
; LIB=C​:\Program Files\Microsoft Visual Studio 12.0\VC\LIB;C​:\Program Files\Microsoft Visual Studio 12.0\VC\ATLMFC\LIB;C​:\Program Files\Windows Kits\8.1\lib\winv6.3\um\x86;
; LIBPATH=C​:\Windows\Microsoft.NET\Framework\v4.0.30319;C​:\Program Files\Microsoft Visual Studio 12.0\VC\LIB;C​:\Program Files\Microsoft Visual Studio 12.0\VC\ATLMFC\LIB;C​:\Program Files\Windows Kits\8.1\References\CommonConfiguration\Neutral;C​:\Program Files\Microsoft SDKs\Windows\v8.1\ExtensionSDKs\Microsoft.VCLibs\12.0\References\CommonConfiguration\neutral;
; LOCALAPPDATA=C​:\Users\Owner\AppData\Local
; LOGONSERVER=\\DELLWIN7
; NUMBER_OF_PROCESSORS=2
; OS=Windows_NT
; Path=C​:\sp520\c\bin;C​:\Windows\system32;C​:\Program Files\Microsoft Visual Studio 12.0\VC\BIN;C​:\Program Files\Windows Kits\8.1\bin\x86;C​:\Windows;C​:\Program Files\ActiveState Komodo Edit 9;C​:\Program Files\Git\bin;
; PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC
; PROCESSOR_ARCHITECTURE=x86
; PROCESSOR_IDENTIFIER=x86 Family 6 Model 15 Stepping 6, GenuineIntel
; PROCESSOR_LEVEL=6
; PROCESSOR_REVISION=0f06
; ProgramData=C​:\ProgramData
; ProgramFiles=C​:\Program Files
; PROMPT=$P$G
; PSModulePath=C​:\Windows\system32\WindowsPowerShell\v1.0\Modules\
; PUBLIC=C​:\Users\Public
; SESSIONNAME=Console
; SystemDrive=C​:
; SystemRoot=C​:\Windows
; TEMP=C​:\Users\Owner\AppData\Local\Temp
; TERM=dumb
; TMP=C​:\Users\Owner\AppData\Local\Temp
; USERDOMAIN=dellwin7
; USERNAME=Owner
; USERPROFILE=C​:\Users\Owner
; USE_NO_REGISTRY=define
; VCINSTALLDIR=C​:\Program Files\Microsoft Visual Studio 12.0\VC\
; VisualStudioVersion=12.0
; VS100COMNTOOLS=C​:\Program Files\Microsoft Visual Studio 10.0\Common7\Tools\
; VS110COMNTOOLS=C​:\Program Files\Microsoft Visual Studio 11.0\Common7\Tools\
; VS120COMNTOOLS=C​:\Program Files\Microsoft Visual Studio 12.0\Common7\Tools\
; VS140COMNTOOLS=C​:\Program Files\Microsoft Visual Studio 14.0\Common7\Tools\
; VS71COMNTOOLS=C​:\Program Files\Microsoft Visual Studio .NET 2003\Common7\Tools\
; VSINSTALLDIR=C​:\Program Files\Microsoft Visual Studio 12.0\
; windir=C​:\Windows
; WindowsSdkDir=C​:\Program Files\Windows Kits\8.1\
; WindowsSDK_ExecutablePath_x86=C​:\Program Files\Microsoft SDKs\Windows\v8.1A\bin\NETFX 4.5.1 Tools\
; windows_tracing_flags=3
; windows_tracing_logfile=C​:\BVTBin\Tests\installpackage\csilogfile.log
; _NT_SYMBOL_PATH=symsrv*symsrv.dll*C​:\Windows\Symbols*http​://msdl.microsoft.com/download/symbols"
"1​:21​:15.0558055 AM","perl.exe","3040","","Thread Create","SUCCESS","Thread ID​: 3564"
"1​:21​:15.0580722 AM","perl.exe","3040","C​:\p523\src\perl.exe","Load Image","SUCCESS","Image Base​: 0x1380000, Image Size​: 0x6000"
"1​:21​:15.0582049 AM","perl.exe","3040","C​:\Windows\System32\ntdll.dll","Load Image","SUCCESS","Image Base​: 0x77a60000, Image Size​: 0x13c000"
"1​:21​:15.0583349 AM","perl.exe","3040","C​:\Windows\Prefetch\PERL.EXE-70D43908.pf","CreateFile","SUCCESS","Desired Access​: Generic Read, Disposition​: Open, Options​: Synchronous IO Non-Alert, Attributes​: n/a, ShareMode​: None, AllocationSize​: n/a, OpenResult​: Opened"
"1​:21​:15.0585164 AM","perl.exe","3040","C​:\Windows\Prefetch\PERL.EXE-70D43908.pf","QueryStandardInformationFile","SUCCESS","AllocationSize​: 204,800, EndOfFile​: 202,156, NumberOfLinks​: 1, DeletePending​: False, Directory​: False"
"1​:21​:15.0585459 AM","perl.exe","3040","C​:\Windows\Prefetch\PERL.EXE-70D43908.pf","ReadFile","SUCCESS","Offset​: 0, Length​: 202,156, Priority​: Normal"
"1​:21​:15.0588746 AM","perl.exe","3040","C​:\Windows\Prefetch\PERL.EXE-70D43908.pf","CloseFile","SUCCESS",""
"1​:21​:15.0592239 AM","perl.exe","3040","C​:\p523\src","CreateFile","SUCCESS","Desired Access​: Execute/Traverse, Synchronize, Disposition​: Open, Options​: Directory, Synchronous IO Non-Alert, Attributes​: n/a, ShareMode​: Read, Write, AllocationSize​: n/a, OpenResult​: Opened"
"1​:21​:15.0597627 AM","perl.exe","3040","C​:\Windows\System32\kernel32.dll","Load Image","SUCCESS","Image Base​: 0x767d0000, Image Size​: 0xd4000"
"1​:21​:15.0601841 AM","perl.exe","3040","C​:\Windows\System32\KernelBase.dll","Load Image","SUCCESS","Image Base​: 0x75e60000, Image Size​: 0x4a000"
"1​:21​:15.0612045 AM","perl.exe","3040","C​:\p523\src\perl523.dll","CreateFile","SUCCESS","Desired Access​: Read Attributes, Disposition​: Open, Options​: Open Reparse Point, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:21​:15.0612295 AM","perl.exe","3040","C​:\p523\src\perl523.dll","QueryBasicInformationFile","SUCCESS","CreationTime​: 2/10/2016 1​:17​:44 AM, LastAccessTime​: 2/10/2016 1​:17​:44 AM, LastWriteTime​: 2/10/2016 1​:17​:44 AM, ChangeTime​: 2/10/2016 1​:17​:44 AM, FileAttributes​: A"
"1​:21​:15.0612374 AM","perl.exe","3040","C​:\p523\src\perl523.dll","CloseFile","SUCCESS",""
"1​:21​:15.0613499 AM","perl.exe","3040","C​:\p523\src\perl523.dll","CreateFile","SUCCESS","Desired Access​: Read Data/List Directory, Execute/Traverse, Synchronize, Disposition​: Open, Options​: Synchronous IO Non-Alert, Non-Directory File, Attributes​: n/a, ShareMode​: Read, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:21​:15.0613745 AM","perl.exe","3040","C​:\p523\src\perl523.dll","CreateFileMapping","FILE LOCKED WITH ONLY READERS","SyncType​: SyncTypeCreateSection, PageProtection​: PAGE_EXECUTE"
"1​:21​:15.0622420 AM","perl.exe","3040","C​:\p523\src\perl523.dll","CreateFileMapping","SUCCESS","SyncType​: SyncTypeOther"
"1​:21​:15.0622851 AM","perl.exe","3040","C​:\p523\src\perl523.dll","Load Image","SUCCESS","Image Base​: 0x50f80000, Image Size​: 0x131000"
"1​:21​:15.0623004 AM","perl.exe","3040","C​:\p523\src\perl523.dll","CloseFile","SUCCESS",""
"1​:21​:15.0628414 AM","perl.exe","3040","C​:\p523\src\perl523.dll","CreateFile","SUCCESS","Desired Access​: Generic Read, Disposition​: Open, Options​: Synchronous IO Non-Alert, Non-Directory File, Attributes​: n/a, ShareMode​: Read, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:21​:15.0628726 AM","perl.exe","3040","C​:\p523\src\perl523.dll","QueryBasicInformationFile","SUCCESS","CreationTime​: 2/10/2016 1​:17​:44 AM, LastAccessTime​: 2/10/2016 1​:17​:44 AM, LastWriteTime​: 2/10/2016 1​:17​:44 AM, ChangeTime​: 2/10/2016 1​:17​:44 AM, FileAttributes​: A"
"1​:21​:15.0629328 AM","perl.exe","3040","C​:\p523\src\perl523.dll","CloseFile","SUCCESS",""
"1​:21​:15.0631639 AM","perl.exe","3040","C​:\Windows\System32\user32.dll","Load Image","SUCCESS","Image Base​: 0x77990000, Image Size​: 0xc9000"
"1​:21​:15.0633604 AM","perl.exe","3040","C​:\Windows\System32\gdi32.dll","Load Image","SUCCESS","Image Base​: 0x76290000, Image Size​: 0x4e000"
"1​:21​:15.0635783 AM","perl.exe","3040","C​:\Windows\System32\lpk.dll","Load Image","SUCCESS","Image Base​: 0x76280000, Image Size​: 0xa000"
"1​:21​:15.0637721 AM","perl.exe","3040","C​:\Windows\System32\usp10.dll","Load Image","SUCCESS","Image Base​: 0x77810000, Image Size​: 0x9d000"
"1​:21​:15.0638974 AM","perl.exe","3040","C​:\Windows\System32\msvcrt.dll","Load Image","SUCCESS","Image Base​: 0x76390000, Image Size​: 0xac000"
"1​:21​:15.0643434 AM","perl.exe","3040","C​:\p523\src\perl.exe.Local","CreateFile","NAME NOT FOUND","Desired Access​: Read Attributes, Disposition​: Open, Options​: Open Reparse Point, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a"
"1​:21​:15.0646181 AM","perl.exe","3040","C​:\Windows\winsxs\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_41e6975e2bd6f2b2","CreateFile","SUCCESS","Desired Access​: Read Attributes, Disposition​: Open, Options​: Open Reparse Point, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:21​:15.0646444 AM","perl.exe","3040","C​:\Windows\winsxs\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_41e6975e2bd6f2b2","QueryBasicInformationFile","SUCCESS","CreationTime​: 11/20/2010 4​:29​:09 PM, LastAccessTime​: 11/20/2010 4​:29​:09 PM, LastWriteTime​: 11/20/2010 4​:29​:09 PM, ChangeTime​: 4/3/2015 7​:01​:01 AM, FileAttributes​: D"
"1​:21​:15.0646528 AM","perl.exe","3040","C​:\Windows\winsxs\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_41e6975e2bd6f2b2","CloseFile","SUCCESS",""
"1​:21​:15.0647921 AM","perl.exe","3040","C​:\Windows\winsxs\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_41e6975e2bd6f2b2","CreateFile","SUCCESS","Desired Access​: Execute/Traverse, Synchronize, Disposition​: Open, Options​: Directory, Synchronous IO Non-Alert, Attributes​: n/a, ShareMode​: Read, Write, AllocationSize​: n/a, OpenResult​: Opened"
"1​:21​:15.0650500 AM","perl.exe","3040","C​:\Windows\winsxs\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_41e6975e2bd6f2b2\comctl32.dll","CreateFile","SUCCESS","Desired Access​: Read Attributes, Disposition​: Open, Options​: Open Reparse Point, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:21​:15.0650799 AM","perl.exe","3040","C​:\Windows\winsxs\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_41e6975e2bd6f2b2\comctl32.dll","QueryBasicInformationFile","SUCCESS","CreationTime​: 11/20/2010 4​:29​:06 PM, LastAccessTime​: 11/20/2010 4​:29​:06 PM, LastWriteTime​: 11/20/2010 4​:29​:06 PM, ChangeTime​: 4/3/2015 7​:00​:47 AM, FileAttributes​: A"
"1​:21​:15.0650900 AM","perl.exe","3040","C​:\Windows\winsxs\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_41e6975e2bd6f2b2\comctl32.dll","CloseFile","SUCCESS",""
"1​:21​:15.0652407 AM","perl.exe","3040","C​:\Windows\winsxs\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_41e6975e2bd6f2b2\comctl32.dll","CreateFile","SUCCESS","Desired Access​: Read Data/List Directory, Execute/Traverse, Synchronize, Disposition​: Open, Options​: Synchronous IO Non-Alert, Non-Directory File, Attributes​: n/a, ShareMode​: Read, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:21​:15.0652794 AM","perl.exe","3040","C​:\Windows\winsxs\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_41e6975e2bd6f2b2\comctl32.dll","CreateFileMapping","FILE LOCKED WITH ONLY READERS","SyncType​: SyncTypeCreateSection, PageProtection​: PAGE_EXECUTE"
"1​:21​:15.0653198 AM","perl.exe","3040","C​:\Windows\winsxs\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_41e6975e2bd6f2b2\comctl32.dll","CreateFileMapping","SUCCESS","SyncType​: SyncTypeOther"
"1​:21​:15.0653515 AM","perl.exe","3040","C​:\Windows\winsxs\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_41e6975e2bd6f2b2\comctl32.dll","Load Image","SUCCESS","Image Base​: 0x74920000, Image Size​: 0x19e000"
"1​:21​:15.0653664 AM","perl.exe","3040","C​:\Windows\winsxs\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_41e6975e2bd6f2b2\comctl32.dll","CloseFile","SUCCESS",""
"1​:21​:15.0655813 AM","perl.exe","3040","C​:\Windows\System32\shlwapi.dll","Load Image","SUCCESS","Image Base​: 0x77ba0000, Image Size​: 0x57000"
"1​:21​:15.0659386 AM","perl.exe","3040","C​:\p523\src\MSVCR120.dll","CreateFile","NAME NOT FOUND","Desired Access​: Read Attributes, Disposition​: Open, Options​: Open Reparse Point, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a"
"1​:21​:15.0666311 AM","perl.exe","3040","C​:\Windows\System32\msvcr120.dll","CreateFile","SUCCESS","Desired Access​: Read Attributes, Disposition​: Open, Options​: Open Reparse Point, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:21​:15.0666579 AM","perl.exe","3040","C​:\Windows\System32\msvcr120.dll","QueryBasicInformationFile","SUCCESS","CreationTime​: 10/5/2013 1​:38​:22 AM, LastAccessTime​: 5/2/2015 5​:00​:39 AM, LastWriteTime​: 10/5/2013 1​:38​:22 AM, ChangeTime​: 8/1/2015 12​:26​:01 AM, FileAttributes​: A"
"1​:21​:15.0666663 AM","perl.exe","3040","C​:\Windows\System32\msvcr120.dll","CloseFile","SUCCESS",""
"1​:21​:15.0668192 AM","perl.exe","3040","C​:\Windows\System32\msvcr120.dll","CreateFile","SUCCESS","Desired Access​: Read Data/List Directory, Execute/Traverse, Synchronize, Disposition​: Open, Options​: Synchronous IO Non-Alert, Non-Directory File, Attributes​: n/a, ShareMode​: Read, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:21​:15.0668478 AM","perl.exe","3040","C​:\Windows\System32\msvcr120.dll","CreateFileMapping","FILE LOCKED WITH ONLY READERS","SyncType​: SyncTypeCreateSection, PageProtection​: PAGE_EXECUTE"
"1​:21​:15.0668957 AM","perl.exe","3040","C​:\Windows\System32\msvcr120.dll","CreateFileMapping","SUCCESS","SyncType​: SyncTypeOther"
"1​:21​:15.0669291 AM","perl.exe","3040","C​:\Windows\System32\msvcr120.dll","Load Image","SUCCESS","Image Base​: 0x62850000, Image Size​: 0xee000"
"1​:21​:15.0669431 AM","perl.exe","3040","C​:\Windows\System32\msvcr120.dll","CloseFile","SUCCESS",""
"1​:21​:15.0686126 AM","perl.exe","3040","C​:\Windows\System32\imm32.dll","CreateFile","SUCCESS","Desired Access​: Read Attributes, Disposition​: Open, Options​: Open Reparse Point, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:21​:15.0687286 AM","perl.exe","3040","C​:\Windows\System32\imm32.dll","QueryBasicInformationFile","SUCCESS","CreationTime​: 11/20/2010 4​:29​:20 PM, LastAccessTime​: 11/20/2010 4​:29​:20 PM, LastWriteTime​: 11/20/2010 4​:29​:20 PM, ChangeTime​: 4/3/2015 6​:57​:49 AM, FileAttributes​: A"
"1​:21​:15.0687378 AM","perl.exe","3040","C​:\Windows\System32\imm32.dll","CloseFile","SUCCESS",""
"1​:21​:15.0688705 AM","perl.exe","3040","C​:\Windows\System32\imm32.dll","CreateFile","SUCCESS","Desired Access​: Read Data/List Directory, Synchronize, Disposition​: Open, Options​: Synchronous IO Non-Alert, Non-Directory File, Attributes​: n/a, ShareMode​: Read, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:21​:15.0689791 AM","perl.exe","3040","C​:\Windows\System32\imm32.dll","CreateFileMapping","FILE LOCKED WITH ONLY READERS","SyncType​: SyncTypeCreateSection, PageProtection​: PAGE_READONLY"
"1​:21​:15.0690076 AM","perl.exe","3040","C​:\Windows\System32\imm32.dll","QueryStandardInformationFile","SUCCESS","AllocationSize​: 118,784, EndOfFile​: 118,272, NumberOfLinks​: 2, DeletePending​: False, Directory​: False"
"1​:21​:15.0690252 AM","perl.exe","3040","C​:\Windows\System32\imm32.dll","CreateFileMapping","SUCCESS","SyncType​: SyncTypeOther"
"1​:21​:15.0690740 AM","perl.exe","3040","C​:\Windows\System32\imm32.dll","CloseFile","SUCCESS",""
"1​:21​:15.0693948 AM","perl.exe","3040","C​:\Windows\System32\imm32.dll","CreateFile","SUCCESS","Desired Access​: Read Attributes, Disposition​: Open, Options​: Open Reparse Point, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:21​:15.0695415 AM","perl.exe","3040","C​:\Windows\System32\imm32.dll","QueryBasicInformationFile","SUCCESS","CreationTime​: 11/20/2010 4​:29​:20 PM, LastAccessTime​: 11/20/2010 4​:29​:20 PM, LastWriteTime​: 11/20/2010 4​:29​:20 PM, ChangeTime​: 4/3/2015 6​:57​:49 AM, FileAttributes​: A"
"1​:21​:15.0695604 AM","perl.exe","3040","C​:\Windows\System32\imm32.dll","CloseFile","SUCCESS",""
"1​:21​:15.0697252 AM","perl.exe","3040","C​:\Windows\System32\imm32.dll","CreateFile","SUCCESS","Desired Access​: Read Data/List Directory, Synchronize, Disposition​: Open, Options​: Synchronous IO Non-Alert, Non-Directory File, Attributes​: n/a, ShareMode​: Read, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:21​:15.0698988 AM","perl.exe","3040","C​:\Windows\System32\imm32.dll","CreateFileMapping","FILE LOCKED WITH ONLY READERS","SyncType​: SyncTypeCreateSection, PageProtection​: PAGE_READONLY"
"1​:21​:15.0699071 AM","perl.exe","3040","C​:\Windows\System32\imm32.dll","QueryStandardInformationFile","SUCCESS","AllocationSize​: 118,784, EndOfFile​: 118,272, NumberOfLinks​: 2, DeletePending​: False, Directory​: False"
"1​:21​:15.0699243 AM","perl.exe","3040","C​:\Windows\System32\imm32.dll","CreateFileMapping","SUCCESS","SyncType​: SyncTypeOther"
"1​:21​:15.0699625 AM","perl.exe","3040","C​:\Windows\System32\imm32.dll","CloseFile","SUCCESS",""
"1​:21​:15.0702328 AM","perl.exe","3040","C​:\Windows\System32\imm32.dll","CreateFile","SUCCESS","Desired Access​: Read Attributes, Disposition​: Open, Options​: Open Reparse Point, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:21​:15.0703769 AM","perl.exe","3040","C​:\Windows\System32\imm32.dll","QueryBasicInformationFile","SUCCESS","CreationTime​: 11/20/2010 4​:29​:20 PM, LastAccessTime​: 11/20/2010 4​:29​:20 PM, LastWriteTime​: 11/20/2010 4​:29​:20 PM, ChangeTime​: 4/3/2015 6​:57​:49 AM, FileAttributes​: A"
"1​:21​:15.0703857 AM","perl.exe","3040","C​:\Windows\System32\imm32.dll","CloseFile","SUCCESS",""
"1​:21​:15.0705518 AM","perl.exe","3040","C​:\Windows\System32\imm32.dll","CreateFile","SUCCESS","Desired Access​: Read Data/List Directory, Execute/Traverse, Synchronize, Disposition​: Open, Options​: Synchronous IO Non-Alert, Non-Directory File, Attributes​: n/a, ShareMode​: Read, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:21​:15.0706590 AM","perl.exe","3040","C​:\Windows\System32\imm32.dll","CreateFileMapping","FILE LOCKED WITH ONLY READERS","SyncType​: SyncTypeCreateSection, PageProtection​: PAGE_EXECUTE"
"1​:21​:15.0706942 AM","perl.exe","3040","C​:\Windows\System32\imm32.dll","CreateFileMapping","SUCCESS","SyncType​: SyncTypeOther"
"1​:21​:15.0708291 AM","perl.exe","3040","C​:\Windows\System32\imm32.dll","Load Image","SUCCESS","Image Base​: 0x77c00000, Image Size​: 0x1f000"
"1​:21​:15.0708445 AM","perl.exe","3040","C​:\Windows\System32\imm32.dll","CloseFile","SUCCESS",""
"1​:21​:15.0710475 AM","perl.exe","3040","C​:\Windows\System32\msctf.dll","Load Image","SUCCESS","Image Base​: 0x761b0000, Image Size​: 0xcc000"
"1​:21​:15.0746843 AM","perl.exe","3040","C​:\Windows\WindowsShell.Manifest","CreateFile","SUCCESS","Desired Access​: Generic Read/Execute, Disposition​: Open, Options​: Synchronous IO Non-Alert, Non-Directory File, Attributes​: n/a, ShareMode​: Read, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:21​:15.0747173 AM","perl.exe","3040","C​:\Windows\WindowsShell.Manifest","CreateFileMapping","FILE LOCKED WITH ONLY READERS","SyncType​: SyncTypeCreateSection, PageProtection​: PAGE_READONLY"
"1​:21​:15.0747256 AM","perl.exe","3040","C​:\Windows\WindowsShell.Manifest","QueryStandardInformationFile","SUCCESS","AllocationSize​: 4,096, EndOfFile​: 749, NumberOfLinks​: 1, DeletePending​: False, Directory​: False"
"1​:21​:15.0747423 AM","perl.exe","3040","C​:\Windows\WindowsShell.Manifest","CreateFileMapping","SUCCESS","SyncType​: SyncTypeOther"
"1​:21​:15.0748109 AM","perl.exe","3040","C​:\Windows\WindowsShell.Manifest","QueryStandardInformationFile","SUCCESS","AllocationSize​: 4,096, EndOfFile​: 749, NumberOfLinks​: 1, DeletePending​: False, Directory​: False"
"1​:21​:15.0748218 AM","perl.exe","3040","C​:\Windows\WindowsShell.Manifest","QueryBasicInformationFile","SUCCESS","CreationTime​: 7/13/2009 11​:41​:57 PM, LastAccessTime​: 7/13/2009 11​:41​:57 PM, LastWriteTime​: 7/13/2009 11​:41​:57 PM, ChangeTime​: 4/3/2015 6​:55​:37 AM, FileAttributes​: RHA"
"1​:21​:15.0751211 AM","perl.exe","3040","C​:\Windows\WindowsShell.Manifest","CloseFile","SUCCESS",""
"1​:21​:15.0770379 AM","perl.exe","3040","C​:\p523\src\perl523.dll","CreateFile","SUCCESS","Desired Access​: Read Attributes, Disposition​: Open, Options​: Open Reparse Point, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:21​:15.0770744 AM","perl.exe","3040","C​:\p523\src\perl523.dll","QueryBasicInformationFile","SUCCESS","CreationTime​: 2/10/2016 1​:17​:44 AM, LastAccessTime​: 2/10/2016 1​:17​:44 AM, LastWriteTime​: 2/10/2016 1​:17​:44 AM, ChangeTime​: 2/10/2016 1​:17​:44 AM, FileAttributes​: A"
"1​:21​:15.0770911 AM","perl.exe","3040","C​:\p523\src\perl523.dll","CloseFile","SUCCESS",""
"1​:21​:15.0771390 AM","perl.exe","3040","C​:\","CreateFile","SUCCESS","Desired Access​: Read Data/List Directory, Synchronize, Disposition​: Open, Options​: Directory, Synchronous IO Non-Alert, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:21​:15.0771671 AM","perl.exe","3040","C​:\p523","QueryDirectory","SUCCESS","Filter​: p523, 1​: p523"
"1​:21​:15.0771957 AM","perl.exe","3040","C​:\","CloseFile","SUCCESS",""
"1​:21​:15.0773258 AM","perl.exe","3040","C​:\p523","CreateFile","SUCCESS","Desired Access​: Read Data/List Directory, Synchronize, Disposition​: Open, Options​: Directory, Synchronous IO Non-Alert, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:21​:15.0773557 AM","perl.exe","3040","C​:\p523\src","QueryDirectory","SUCCESS","Filter​: src, 1​: src"
"1​:21​:15.0773825 AM","perl.exe","3040","C​:\p523","CloseFile","SUCCESS",""
"1​:21​:15.0775108 AM","perl.exe","3040","C​:\p523\src","CreateFile","SUCCESS","Desired Access​: Read Data/List Directory, Synchronize, Disposition​: Open, Options​: Directory, Synchronous IO Non-Alert, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:21​:15.0775363 AM","perl.exe","3040","C​:\p523\src\perl523.dll","QueryDirectory","SUCCESS","Filter​: perl523.dll, 1​: perl523.dll"
"1​:21​:15.0775609 AM","perl.exe","3040","C​:\p523\src","CloseFile","SUCCESS",""
"1​:21​:15.0776444 AM","perl.exe","3040","C​:\p523\src\perl.exe","QueryNameInformationFile","SUCCESS","Name​: \p523\src\perl.exe"
"1​:21​:15.0789042 AM","perl.exe","3040","C​:\Windows\Globalization\Sorting\SortDefault.nls","CreateFile","SUCCESS","Desired Access​: Generic Read, Disposition​: Open, Options​: Synchronous IO Non-Alert, Non-Directory File, Attributes​: N, ShareMode​: Read, AllocationSize​: n/a, OpenResult​: Opened"
"1​:21​:15.0789390 AM","perl.exe","3040","C​:\Windows\Globalization\Sorting\SortDefault.nls","CreateFileMapping","FILE LOCKED WITH ONLY READERS","SyncType​: SyncTypeCreateSection, PageProtection​: PAGE_READONLY"
"1​:21​:15.0789464 AM","perl.exe","3040","C​:\Windows\Globalization\Sorting\SortDefault.nls","QueryStandardInformationFile","SUCCESS","AllocationSize​: 2,945,024, EndOfFile​: 2,944,004, NumberOfLinks​: 2, DeletePending​: False, Directory​: False"
"1​:21​:15.0789688 AM","perl.exe","3040","C​:\Windows\Globalization\Sorting\SortDefault.nls","CreateFileMapping","SUCCESS","SyncType​: SyncTypeOther"
"1​:21​:15.0789930 AM","perl.exe","3040","C​:\Windows\Globalization\Sorting\SortDefault.nls","CloseFile","SUCCESS",""
"1​:21​:15.0793639 AM","perl.exe","3040","C​:\p523\src\site\5.23.8\lib","CreateFile","PATH NOT FOUND","Desired Access​: Read Attributes, Disposition​: Open, Options​: Open Reparse Point, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a"
"1​:21​:15.0794505 AM","perl.exe","3040","C​:\p523\src\site\lib","CreateFile","PATH NOT FOUND","Desired Access​: Read Attributes, Disposition​: Open, Options​: Open Reparse Point, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a"
"1​:21​:15.0796979 AM","perl.exe","3040","C​:\p523\src\lib","CreateFile","SUCCESS","Desired Access​: Read Attributes, Disposition​: Open, Options​: Open Reparse Point, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:21​:15.0797229 AM","perl.exe","3040","C​:\p523\src\lib","QueryBasicInformationFile","SUCCESS","CreationTime​: 4/6/2015 3​:28​:26 AM, LastAccessTime​: 2/10/2016 1​:13​:52 AM, LastWriteTime​: 2/10/2016 1​:13​:52 AM, ChangeTime​: 2/10/2016 1​:13​:52 AM, FileAttributes​: DA"
"1​:21​:15.0797313 AM","perl.exe","3040","C​:\p523\src\lib","CloseFile","SUCCESS",""
"1​:21​:15.0798227 AM","perl.exe","3040","C​:\p523\src\lib\5.23.8\MSWin32-x86-multi-thread","CreateFile","PATH NOT FOUND","Desired Access​: Read Attributes, Synchronize, Disposition​: Open, Options​: Synchronous IO Non-Alert, Non-Directory File, Attributes​: n/a, ShareMode​: None, AllocationSize​: n/a"
"1​:21​:15.0799725 AM","perl.exe","3040","C​:\p523\src\lib\5.23.8","CreateFile","NAME NOT FOUND","Desired Access​: Read Data/List Directory, Synchronize, Disposition​: Open, Options​: Directory, Synchronous IO Non-Alert, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a"
"1​:21​:15.0800762 AM","perl.exe","3040","C​:\p523\src\lib\5.23.8\MSWin32-x86-multi-thread","CreateFile","PATH NOT FOUND","Desired Access​: Read Attributes, Disposition​: Open, Options​: Open Reparse Point, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a"
"1​:21​:15.0802120 AM","perl.exe","3040","C​:\p523\src\lib\5.23.8","CreateFile","NAME NOT FOUND","Desired Access​: Read Attributes, Synchronize, Disposition​: Open, Options​: Synchronous IO Non-Alert, Non-Directory File, Attributes​: n/a, ShareMode​: None, AllocationSize​: n/a"
"1​:21​:15.0803241 AM","perl.exe","3040","C​:\p523\src\lib","CreateFile","SUCCESS","Desired Access​: Read Data/List Directory, Synchronize, Disposition​: Open, Options​: Directory, Synchronous IO Non-Alert, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:21​:15.0803482 AM","perl.exe","3040","C​:\p523\src\lib\5.23.8","QueryDirectory","NO SUCH FILE","Filter​: 5.23.8"
"1​:21​:15.0803649 AM","perl.exe","3040","C​:\p523\src\lib","CloseFile","SUCCESS",""
"1​:21​:15.0805605 AM","perl.exe","3040","C​:\p523\src\lib\5.23.8","CreateFile","NAME NOT FOUND","Desired Access​: Read Attributes, Disposition​: Open, Options​: Open Reparse Point, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a"
"1​:21​:15.0806805 AM","perl.exe","3040","C​:\p523\src\lib\MSWin32-x86-multi-thread","CreateFile","NAME NOT FOUND","Desired Access​: Read Attributes, Synchronize, Disposition​: Open, Options​: Synchronous IO Non-Alert, Non-Directory File, Attributes​: n/a, ShareMode​: None, AllocationSize​: n/a"
"1​:21​:15.0808211 AM","perl.exe","3040","C​:\p523\src\lib","CreateFile","SUCCESS","Desired Access​: Read Data/List Directory, Synchronize, Disposition​: Open, Options​: Directory, Synchronous IO Non-Alert, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:21​:15.0808488 AM","perl.exe","3040","C​:\p523\src\lib\MSWin32-x86-multi-thread","QueryDirectory","NO SUCH FILE","Filter​: MSWin32-x86-multi-thread"
"1​:21​:15.0808672 AM","perl.exe","3040","C​:\p523\src\lib","CloseFile","SUCCESS",""
"1​:21​:15.0811019 AM","perl.exe","3040","C​:\p523\src\lib\MSWin32-x86-multi-thread","CreateFile","NAME NOT FOUND","Desired Access​: Read Attributes, Disposition​: Open, Options​: Open Reparse Point, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a"
"1​:21​:15.0822352 AM","perl.exe","3040","C​:\p523\src\nofile","CreateFile","NAME NOT FOUND","Desired Access​: Read Attributes, Synchronize, Disposition​: Open, Options​: Synchronous IO Non-Alert, Non-Directory File, Attributes​: n/a, ShareMode​: None, AllocationSize​: n/a"
"1​:21​:15.0823784 AM","perl.exe","3040","C​:\p523\src","CreateFile","SUCCESS","Desired Access​: Read Data/List Directory, Synchronize, Disposition​: Open, Options​: Directory, Synchronous IO Non-Alert, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:21​:15.0824070 AM","perl.exe","3040","C​:\p523\src\nofile","QueryDirectory","NO SUCH FILE","Filter​: nofile"
"1​:21​:15.0824259 AM","perl.exe","3040","C​:\p523\src","CloseFile","SUCCESS",""
"1​:21​:15.0826711 AM","perl.exe","3040","C​:\p523\src\nofile","CreateFile","NAME NOT FOUND","Desired Access​: Read Attributes, Disposition​: Open, Options​: Open Reparse Point, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a"
"1​:21​:15.0828166 AM","perl.exe","3040","C​:\p523\src\nofile","CreateFile","NAME NOT FOUND","Desired Access​: Read Attributes, Synchronize, Disposition​: Open, Options​: Synchronous IO Non-Alert, Non-Directory File, Attributes​: n/a, ShareMode​: None, AllocationSize​: n/a"
"1​:21​:15.0829352 AM","perl.exe","3040","C​:\p523\src","CreateFile","SUCCESS","Desired Access​: Read Data/List Directory, Synchronize, Disposition​: Open, Options​: Directory, Synchronous IO Non-Alert, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:21​:15.0829616 AM","perl.exe","3040","C​:\p523\src\nofile","QueryDirectory","NO SUCH FILE","Filter​: nofile"
"1​:21​:15.0829796 AM","perl.exe","3040","C​:\p523\src","CloseFile","SUCCESS",""
"1​:21​:15.0832138 AM","perl.exe","3040","C​:\p523\src\nofile","CreateFile","NAME NOT FOUND","Desired Access​: Read Attributes, Disposition​: Open, Options​: Open Reparse Point, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a"
"1​:21​:15.0833461 AM","perl.exe","3040","C​:\p523\src\nofile","CreateFile","NAME NOT FOUND","Desired Access​: Read Attributes, Synchronize, Disposition​: Open, Options​: Synchronous IO Non-Alert, Non-Directory File, Attributes​: n/a, ShareMode​: None, AllocationSize​: n/a"
"1​:21​:15.0834766 AM","perl.exe","3040","C​:\p523\src","CreateFile","SUCCESS","Desired Access​: Read Data/List Directory, Synchronize, Disposition​: Open, Options​: Directory, Synchronous IO Non-Alert, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:21​:15.0835034 AM","perl.exe","3040","C​:\p523\src\nofile","QueryDirectory","NO SUCH FILE","Filter​: nofile"
"1​:21​:15.0835227 AM","perl.exe","3040","C​:\p523\src","CloseFile","SUCCESS",""
"1​:21​:15.0837341 AM","perl.exe","3040","C​:\p523\src\nofile","CreateFile","NAME NOT FOUND","Desired Access​: Read Attributes, Disposition​: Open, Options​: Open Reparse Point, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a"
"1​:21​:15.0838488 AM","perl.exe","3040","C​:\p523\src\nofile","CreateFile","NAME NOT FOUND","Desired Access​: Read Attributes, Synchronize, Disposition​: Open, Options​: Synchronous IO Non-Alert, Non-Directory File, Attributes​: n/a, ShareMode​: None, AllocationSize​: n/a"
"1​:21​:15.0839587 AM","perl.exe","3040","C​:\p523\src","CreateFile","SUCCESS","Desired Access​: Read Data/List Directory, Synchronize, Disposition​: Open, Options​: Directory, Synchronous IO Non-Alert, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:21​:15.0839824 AM","perl.exe","3040","C​:\p523\src\nofile","QueryDirectory","NO SUCH FILE","Filter​: nofile"
"1​:21​:15.0839991 AM","perl.exe","3040","C​:\p523\src","CloseFile","SUCCESS",""
"1​:21​:15.0842179 AM","perl.exe","3040","C​:\p523\src\nofile","CreateFile","NAME NOT FOUND","Desired Access​: Read Attributes, Disposition​: Open, Options​: Open Reparse Point, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a"
"1​:21​:15.0843493 AM","perl.exe","3040","C​:\p523\src\nofile","CreateFile","NAME NOT FOUND","Desired Access​: Read Attributes, Synchronize, Disposition​: Open, Options​: Synchronous IO Non-Alert, Non-Directory File, Attributes​: n/a, ShareMode​: None, AllocationSize​: n/a"
"1​:21​:15.0844772 AM","perl.exe","3040","C​:\p523\src","CreateFile","SUCCESS","Desired Access​: Read Data/List Directory, Synchronize, Disposition​: Open, Options​: Directory, Synchronous IO Non-Alert, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:21​:15.0845027 AM","perl.exe","3040","C​:\p523\src\nofile","QueryDirectory","NO SUCH FILE","Filter​: nofile"
"1​:21​:15.0845203 AM","perl.exe","3040","C​:\p523\src","CloseFile","SUCCESS",""
"1​:21​:15.0847510 AM","perl.exe","3040","C​:\p523\src\nofile","CreateFile","NAME NOT FOUND","Desired Access​: Read Attributes, Disposition​: Open, Options​: Open Reparse Point, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a"
"1​:21​:15.0848780 AM","perl.exe","3040","C​:\p523\src\nofile","CreateFile","NAME NOT FOUND","Desired Access​: Read Attributes, Synchronize, Disposition​: Open, Options​: Synchronous IO Non-Alert, Non-Directory File, Attributes​: n/a, ShareMode​: None, AllocationSize​: n/a"
"1​:21​:15.0850089 AM","perl.exe","3040","C​:\p523\src","CreateFile","SUCCESS","Desired Access​: Read Data/List Directory, Synchronize, Disposition​: Open, Options​: Directory, Synchronous IO Non-Alert, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:21​:15.0850362 AM","perl.exe","3040","C​:\p523\src\nofile","QueryDirectory","NO SUCH FILE","Filter​: nofile"
"1​:21​:15.0850538 AM","perl.exe","3040","C​:\p523\src","CloseFile","SUCCESS",""
"1​:21​:15.0853016 AM","perl.exe","3040","C​:\p523\src\nofile","CreateFile","NAME NOT FOUND","Desired Access​: Read Attributes, Disposition​: Open, Options​: Open Reparse Point, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a"
"1​:21​:15.0854479 AM","perl.exe","3040","C​:\p523\src\nofile","CreateFile","NAME NOT FOUND","Desired Access​: Read Attributes, Synchronize, Disposition​: Open, Options​: Synchronous IO Non-Alert, Non-Directory File, Attributes​: n/a, ShareMode​: None, AllocationSize​: n/a"
"1​:21​:15.0855741 AM","perl.exe","3040","C​:\p523\src","CreateFile","SUCCESS","Desired Access​: Read Data/List Directory, Synchronize, Disposition​: Open, Options​: Directory, Synchronous IO Non-Alert, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:21​:15.0855978 AM","perl.exe","3040","C​:\p523\src\nofile","QueryDirectory","NO SUCH FILE","Filter​: nofile"
"1​:21​:15.0856158 AM","perl.exe","3040","C​:\p523\src","CloseFile","SUCCESS",""
"1​:21​:15.0858496 AM","perl.exe","3040","C​:\p523\src\nofile","CreateFile","NAME NOT FOUND","Desired Access​: Read Attributes, Disposition​: Open, Options​: Open Reparse Point, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a"
"1​:21​:15.0859810 AM","perl.exe","3040","C​:\p523\src\nofile","CreateFile","NAME NOT FOUND","Desired Access​: Read Attributes, Synchronize, Disposition​: Open, Options​: Synchronous IO Non-Alert, Non-Directory File, Attributes​: n/a, ShareMode​: None, AllocationSize​: n/a"
"1​:21​:15.0861137 AM","perl.exe","3040","C​:\p523\src","CreateFile","SUCCESS","Desired Access​: Read Data/List Directory, Synchronize, Disposition​: Open, Options​: Directory, Synchronous IO Non-Alert, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:21​:15.0861405 AM","perl.exe","3040","C​:\p523\src\nofile","QueryDirectory","NO SUCH FILE","Filter​: nofile"
"1​:21​:15.0861589 AM","perl.exe","3040","C​:\p523\src","CloseFile","SUCCESS",""
"1​:21​:15.0863861 AM","perl.exe","3040","C​:\p523\src\nofile","CreateFile","NAME NOT FOUND","Desired Access​: Read Attributes, Disposition​: Open, Options​: Open Reparse Point, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a"
"1​:21​:15.0865175 AM","perl.exe","3040","C​:\p523\src\nofile","CreateFile","NAME NOT FOUND","Desired Access​: Read Attributes, Synchronize, Disposition​: Open, Options​: Synchronous IO Non-Alert, Non-Directory File, Attributes​: n/a, ShareMode​: None, AllocationSize​: n/a"
"1​:21​:15.0866533 AM","perl.exe","3040","C​:\p523\src","CreateFile","SUCCESS","Desired Access​: Read Data/List Directory, Synchronize, Disposition​: Open, Options​: Directory, Synchronous IO Non-Alert, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:21​:15.0866792 AM","perl.exe","3040","C​:\p523\src\nofile","QueryDirectory","NO SUCH FILE","Filter​: nofile"
"1​:21​:15.0866973 AM","perl.exe","3040","C​:\p523\src","CloseFile","SUCCESS",""
"1​:21​:15.0870752 AM","perl.exe","3040","C​:\p523\src\nofile","CreateFile","NAME NOT FOUND","Desired Access​: Read Attributes, Disposition​: Open, Options​: Open Reparse Point, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a"
"1​:21​:15.0871943 AM","perl.exe","3040","C​:\p523\src\nofile","CreateFile","NAME NOT FOUND","Desired Access​: Read Attributes, Synchronize, Disposition​: Open, Options​: Synchronous IO Non-Alert, Non-Directory File, Attributes​: n/a, ShareMode​: None, AllocationSize​: n/a"
"1​:21​:15.0873142 AM","perl.exe","3040","C​:\p523\src","CreateFile","SUCCESS","Desired Access​: Read Data/List Directory, Synchronize, Disposition​: Open, Options​: Directory, Synchronous IO Non-Alert, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:21​:15.0874118 AM","perl.exe","3040","C​:\p523\src\nofile","QueryDirectory","NO SUCH FILE","Filter​: nofile"
"1​:21​:15.0874338 AM","perl.exe","3040","C​:\p523\src","CloseFile","SUCCESS",""
"1​:21​:15.0876684 AM","perl.exe","3040","C​:\p523\src\nofile","CreateFile","NAME NOT FOUND","Desired Access​: Read Attributes, Disposition​: Open, Options​: Open Reparse Point, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a"
"1​:21​:15.0878064 AM","perl.exe","3040","C​:\p523\src\nofile","CreateFile","NAME NOT FOUND","Desired Access​: Read Attributes, Synchronize, Disposition​: Open, Options​: Synchronous IO Non-Alert, Non-Directory File, Attributes​: n/a, ShareMode​: None, AllocationSize​: n/a"
"1​:21​:15.0879356 AM","perl.exe","3040","C​:\p523\src","CreateFile","SUCCESS","Desired Access​: Read Data/List Directory, Synchronize, Disposition​: Open, Options​: Directory, Synchronous IO Non-Alert, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:21​:15.0879668 AM","perl.exe","3040","C​:\p523\src\nofile","QueryDirectory","NO SUCH FILE","Filter​: nofile"
"1​:21​:15.0879844 AM","perl.exe","3040","C​:\p523\src","CloseFile","SUCCESS",""
"1​:21​:15.0882186 AM","perl.exe","3040","C​:\p523\src\nofile","CreateFile","NAME NOT FOUND","Desired Access​: Read Attributes, Disposition​: Open, Options​: Open Reparse Point, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a"
"1​:21​:15.0886567 AM","perl.exe","3040","","Thread Exit","SUCCESS","Thread ID​: 3564, User Time​: 0.0000000, Kernel Time​: 0.0312002"

@p5pRT
Copy link
Author

p5pRT commented Feb 10, 2016

From @bulk88

"Time of Day","Process Name","PID","Path","Operation","Result","Detail"
"1​:14​:49.9414834 AM","perl.exe","3800","","Process Start","SUCCESS","Parent PID​: 304, Command line​: perl -e"" -e 'nofile' for 0..10"", Current directory​: C​:\p523\src\, Environment​:
; =​::=​::\
; =C​:=C​:\p523\src
; =ExitCode=00000000
; ALLUSERSPROFILE=C​:\ProgramData
; APPDATA=C​:\Users\Owner\AppData\Roaming
; CommonProgramFiles=C​:\Program Files\Common Files
; COMPUTERNAME=DELLWIN7
; ComSpec=C​:\Windows\system32\cmd.exe
; DevEnvDir=C​:\Program Files\Microsoft Visual Studio 12.0\Common7\IDE\
; EMAIL=bulk88@​hotmail.com
; ExtensionSdkDir=C​:\Program Files\Microsoft SDKs\Windows\v8.1\ExtensionSDKs
; FP_NO_HOST_CHECK=NO
; Framework40Version=v4.0
; FrameworkDir=C​:\Windows\Microsoft.NET\Framework\
; FrameworkDIR32=C​:\Windows\Microsoft.NET\Framework\
; FrameworkVersion=v4.0.30319
; FrameworkVersion32=v4.0.30319
; FSHARPINSTALLDIR=C​:\Program Files\Microsoft SDKs\F#\3.1\Framework\v4.0\
; FTP_PASSIVE=1
; HOMEDRIVE=C​:
; HOMEPATH=\Users\Owner
; INCLUDE=C​:\Program Files\Microsoft Visual Studio 12.0\VC\INCLUDE;C​:\Program Files\Microsoft Visual Studio 12.0\VC\ATLMFC\INCLUDE;C​:\Program Files\Windows Kits\8.1\include\shared;C​:\Program Files\Windows Kits\8.1\include\um;C​:\Program Files\Windows Kits\8.1\include\winrt;
; LIB=C​:\Program Files\Microsoft Visual Studio 12.0\VC\LIB;C​:\Program Files\Microsoft Visual Studio 12.0\VC\ATLMFC\LIB;C​:\Program Files\Windows Kits\8.1\lib\winv6.3\um\x86;
; LIBPATH=C​:\Windows\Microsoft.NET\Framework\v4.0.30319;C​:\Program Files\Microsoft Visual Studio 12.0\VC\LIB;C​:\Program Files\Microsoft Visual Studio 12.0\VC\ATLMFC\LIB;C​:\Program Files\Windows Kits\8.1\References\CommonConfiguration\Neutral;C​:\Program Files\Microsoft SDKs\Windows\v8.1\ExtensionSDKs\Microsoft.VCLibs\12.0\References\CommonConfiguration\neutral;
; LOCALAPPDATA=C​:\Users\Owner\AppData\Local
; LOGONSERVER=\\DELLWIN7
; NUMBER_OF_PROCESSORS=2
; OS=Windows_NT
; Path=C​:\sp520\c\bin;C​:\Windows\system32;C​:\Program Files\Microsoft Visual Studio 12.0\VC\BIN;C​:\Program Files\Windows Kits\8.1\bin\x86;C​:\Windows;C​:\Program Files\ActiveState Komodo Edit 9;C​:\Program Files\Git\bin;
; PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC
; PROCESSOR_ARCHITECTURE=x86
; PROCESSOR_IDENTIFIER=x86 Family 6 Model 15 Stepping 6, GenuineIntel
; PROCESSOR_LEVEL=6
; PROCESSOR_REVISION=0f06
; ProgramData=C​:\ProgramData
; ProgramFiles=C​:\Program Files
; PROMPT=$P$G
; PSModulePath=C​:\Windows\system32\WindowsPowerShell\v1.0\Modules\
; PUBLIC=C​:\Users\Public
; SESSIONNAME=Console
; SystemDrive=C​:
; SystemRoot=C​:\Windows
; TEMP=C​:\Users\Owner\AppData\Local\Temp
; TERM=dumb
; TMP=C​:\Users\Owner\AppData\Local\Temp
; USERDOMAIN=dellwin7
; USERNAME=Owner
; USERPROFILE=C​:\Users\Owner
; USE_NO_REGISTRY=define
; VCINSTALLDIR=C​:\Program Files\Microsoft Visual Studio 12.0\VC\
; VisualStudioVersion=12.0
; VS100COMNTOOLS=C​:\Program Files\Microsoft Visual Studio 10.0\Common7\Tools\
; VS110COMNTOOLS=C​:\Program Files\Microsoft Visual Studio 11.0\Common7\Tools\
; VS120COMNTOOLS=C​:\Program Files\Microsoft Visual Studio 12.0\Common7\Tools\
; VS140COMNTOOLS=C​:\Program Files\Microsoft Visual Studio 14.0\Common7\Tools\
; VS71COMNTOOLS=C​:\Program Files\Microsoft Visual Studio .NET 2003\Common7\Tools\
; VSINSTALLDIR=C​:\Program Files\Microsoft Visual Studio 12.0\
; windir=C​:\Windows
; WindowsSdkDir=C​:\Program Files\Windows Kits\8.1\
; WindowsSDK_ExecutablePath_x86=C​:\Program Files\Microsoft SDKs\Windows\v8.1A\bin\NETFX 4.5.1 Tools\
; windows_tracing_flags=3
; windows_tracing_logfile=C​:\BVTBin\Tests\installpackage\csilogfile.log
; _NT_SYMBOL_PATH=symsrv*symsrv.dll*C​:\Windows\Symbols*http​://msdl.microsoft.com/download/symbols"
"1​:14​:49.9414883 AM","perl.exe","3800","","Thread Create","SUCCESS","Thread ID​: 3388"
"1​:14​:49.9439113 AM","perl.exe","3800","C​:\p523\src\perl.exe","Load Image","SUCCESS","Image Base​: 0x1060000, Image Size​: 0x6000"
"1​:14​:49.9440388 AM","perl.exe","3800","C​:\Windows\System32\ntdll.dll","Load Image","SUCCESS","Image Base​: 0x77a60000, Image Size​: 0x13c000"
"1​:14​:49.9441557 AM","perl.exe","3800","C​:\Windows\Prefetch\PERL.EXE-70D43908.pf","CreateFile","SUCCESS","Desired Access​: Generic Read, Disposition​: Open, Options​: Synchronous IO Non-Alert, Attributes​: n/a, ShareMode​: None, AllocationSize​: n/a, OpenResult​: Opened"
"1​:14​:49.9441812 AM","perl.exe","3800","C​:\Windows\Prefetch\PERL.EXE-70D43908.pf","QueryStandardInformationFile","SUCCESS","AllocationSize​: 204,800, EndOfFile​: 202,438, NumberOfLinks​: 1, DeletePending​: False, Directory​: False"
"1​:14​:49.9442000 AM","perl.exe","3800","C​:\Windows\Prefetch\PERL.EXE-70D43908.pf","ReadFile","SUCCESS","Offset​: 0, Length​: 202,438, Priority​: Normal"
"1​:14​:49.9445266 AM","perl.exe","3800","C​:\Windows\Prefetch\PERL.EXE-70D43908.pf","CloseFile","SUCCESS",""
"1​:14​:49.9448790 AM","perl.exe","3800","C​:\p523\src","CreateFile","SUCCESS","Desired Access​: Execute/Traverse, Synchronize, Disposition​: Open, Options​: Directory, Synchronous IO Non-Alert, Attributes​: n/a, ShareMode​: Read, Write, AllocationSize​: n/a, OpenResult​: Opened"
"1​:14​:49.9450530 AM","perl.exe","3800","C​:\Windows\System32\kernel32.dll","Load Image","SUCCESS","Image Base​: 0x767d0000, Image Size​: 0xd4000"
"1​:14​:49.9453259 AM","perl.exe","3800","C​:\Windows\System32\KernelBase.dll","Load Image","SUCCESS","Image Base​: 0x75e60000, Image Size​: 0x4a000"
"1​:14​:49.9473869 AM","perl.exe","3800","C​:\p523\src\perl523.dll","CreateFile","SUCCESS","Desired Access​: Read Attributes, Disposition​: Open, Options​: Open Reparse Point, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:14​:49.9474919 AM","perl.exe","3800","C​:\p523\src\perl523.dll","QueryBasicInformationFile","SUCCESS","CreationTime​: 2/10/2016 1​:10​:38 AM, LastAccessTime​: 2/10/2016 1​:10​:38 AM, LastWriteTime​: 2/10/2016 1​:10​:38 AM, ChangeTime​: 2/10/2016 1​:10​:38 AM, FileAttributes​: A"
"1​:14​:49.9475002 AM","perl.exe","3800","C​:\p523\src\perl523.dll","CloseFile","SUCCESS",""
"1​:14​:49.9476127 AM","perl.exe","3800","C​:\p523\src\perl523.dll","CreateFile","SUCCESS","Desired Access​: Read Data/List Directory, Execute/Traverse, Synchronize, Disposition​: Open, Options​: Synchronous IO Non-Alert, Non-Directory File, Attributes​: n/a, ShareMode​: Read, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:14​:49.9476378 AM","perl.exe","3800","C​:\p523\src\perl523.dll","CreateFileMapping","FILE LOCKED WITH ONLY READERS","SyncType​: SyncTypeCreateSection, PageProtection​: PAGE_EXECUTE"
"1​:14​:49.9485074 AM","perl.exe","3800","C​:\p523\src\perl523.dll","CreateFileMapping","SUCCESS","SyncType​: SyncTypeOther"
"1​:14​:49.9485615 AM","perl.exe","3800","C​:\p523\src\perl523.dll","Load Image","SUCCESS","Image Base​: 0x54170000, Image Size​: 0x131000"
"1​:14​:49.9485782 AM","perl.exe","3800","C​:\p523\src\perl523.dll","CloseFile","SUCCESS",""
"1​:14​:49.9492281 AM","perl.exe","3800","C​:\p523\src\perl523.dll","CreateFile","SUCCESS","Desired Access​: Generic Read, Disposition​: Open, Options​: Synchronous IO Non-Alert, Non-Directory File, Attributes​: n/a, ShareMode​: Read, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:14​:49.9492606 AM","perl.exe","3800","C​:\p523\src\perl523.dll","QueryBasicInformationFile","SUCCESS","CreationTime​: 2/10/2016 1​:10​:38 AM, LastAccessTime​: 2/10/2016 1​:10​:38 AM, LastWriteTime​: 2/10/2016 1​:10​:38 AM, ChangeTime​: 2/10/2016 1​:10​:38 AM, FileAttributes​: A"
"1​:14​:49.9493771 AM","perl.exe","3800","C​:\p523\src\perl523.dll","CloseFile","SUCCESS",""
"1​:14​:49.9496381 AM","perl.exe","3800","C​:\Windows\System32\user32.dll","Load Image","SUCCESS","Image Base​: 0x77990000, Image Size​: 0xc9000"
"1​:14​:49.9498332 AM","perl.exe","3800","C​:\Windows\System32\gdi32.dll","Load Image","SUCCESS","Image Base​: 0x76290000, Image Size​: 0x4e000"
"1​:14​:49.9500332 AM","perl.exe","3800","C​:\Windows\System32\lpk.dll","Load Image","SUCCESS","Image Base​: 0x76280000, Image Size​: 0xa000"
"1​:14​:49.9502261 AM","perl.exe","3800","C​:\Windows\System32\usp10.dll","Load Image","SUCCESS","Image Base​: 0x77810000, Image Size​: 0x9d000"
"1​:14​:49.9504269 AM","perl.exe","3800","C​:\Windows\System32\msvcrt.dll","Load Image","SUCCESS","Image Base​: 0x76390000, Image Size​: 0xac000"
"1​:14​:49.9508989 AM","perl.exe","3800","C​:\p523\src\perl.exe.Local","CreateFile","NAME NOT FOUND","Desired Access​: Read Attributes, Disposition​: Open, Options​: Open Reparse Point, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a"
"1​:14​:49.9513484 AM","perl.exe","3800","C​:\Windows\winsxs\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_41e6975e2bd6f2b2","CreateFile","SUCCESS","Desired Access​: Read Attributes, Disposition​: Open, Options​: Open Reparse Point, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:14​:49.9513748 AM","perl.exe","3800","C​:\Windows\winsxs\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_41e6975e2bd6f2b2","QueryBasicInformationFile","SUCCESS","CreationTime​: 11/20/2010 4​:29​:09 PM, LastAccessTime​: 11/20/2010 4​:29​:09 PM, LastWriteTime​: 11/20/2010 4​:29​:09 PM, ChangeTime​: 4/3/2015 7​:01​:01 AM, FileAttributes​: D"
"1​:14​:49.9513836 AM","perl.exe","3800","C​:\Windows\winsxs\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_41e6975e2bd6f2b2","CloseFile","SUCCESS",""
"1​:14​:49.9528386 AM","perl.exe","3800","C​:\Windows\winsxs\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_41e6975e2bd6f2b2","CreateFile","SUCCESS","Desired Access​: Execute/Traverse, Synchronize, Disposition​: Open, Options​: Directory, Synchronous IO Non-Alert, Attributes​: n/a, ShareMode​: Read, Write, AllocationSize​: n/a, OpenResult​: Opened"
"1​:14​:49.9530917 AM","perl.exe","3800","C​:\Windows\winsxs\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_41e6975e2bd6f2b2\comctl32.dll","CreateFile","SUCCESS","Desired Access​: Read Attributes, Disposition​: Open, Options​: Open Reparse Point, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:14​:49.9531277 AM","perl.exe","3800","C​:\Windows\winsxs\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_41e6975e2bd6f2b2\comctl32.dll","QueryBasicInformationFile","SUCCESS","CreationTime​: 11/20/2010 4​:29​:06 PM, LastAccessTime​: 11/20/2010 4​:29​:06 PM, LastWriteTime​: 11/20/2010 4​:29​:06 PM, ChangeTime​: 4/3/2015 7​:00​:47 AM, FileAttributes​: A"
"1​:14​:49.9531435 AM","perl.exe","3800","C​:\Windows\winsxs\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_41e6975e2bd6f2b2\comctl32.dll","CloseFile","SUCCESS",""
"1​:14​:49.9532841 AM","perl.exe","3800","C​:\Windows\winsxs\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_41e6975e2bd6f2b2\comctl32.dll","CreateFile","SUCCESS","Desired Access​: Read Data/List Directory, Execute/Traverse, Synchronize, Disposition​: Open, Options​: Synchronous IO Non-Alert, Non-Directory File, Attributes​: n/a, ShareMode​: Read, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:14​:49.9533127 AM","perl.exe","3800","C​:\Windows\winsxs\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_41e6975e2bd6f2b2\comctl32.dll","CreateFileMapping","FILE LOCKED WITH ONLY READERS","SyncType​: SyncTypeCreateSection, PageProtection​: PAGE_EXECUTE"
"1​:14​:49.9533487 AM","perl.exe","3800","C​:\Windows\winsxs\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_41e6975e2bd6f2b2\comctl32.dll","CreateFileMapping","SUCCESS","SyncType​: SyncTypeOther"
"1​:14​:49.9533786 AM","perl.exe","3800","C​:\Windows\winsxs\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_41e6975e2bd6f2b2\comctl32.dll","Load Image","SUCCESS","Image Base​: 0x74920000, Image Size​: 0x19e000"
"1​:14​:49.9533936 AM","perl.exe","3800","C​:\Windows\winsxs\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_41e6975e2bd6f2b2\comctl32.dll","CloseFile","SUCCESS",""
"1​:14​:49.9536076 AM","perl.exe","3800","C​:\Windows\System32\shlwapi.dll","Load Image","SUCCESS","Image Base​: 0x77ba0000, Image Size​: 0x57000"
"1​:14​:49.9540264 AM","perl.exe","3800","C​:\p523\src\MSVCR120.dll","CreateFile","NAME NOT FOUND","Desired Access​: Read Attributes, Disposition​: Open, Options​: Open Reparse Point, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a"
"1​:14​:49.9542738 AM","perl.exe","3800","C​:\Windows\System32\msvcr120.dll","CreateFile","SUCCESS","Desired Access​: Read Attributes, Disposition​: Open, Options​: Open Reparse Point, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:14​:49.9543986 AM","perl.exe","3800","C​:\Windows\System32\msvcr120.dll","QueryBasicInformationFile","SUCCESS","CreationTime​: 10/5/2013 1​:38​:22 AM, LastAccessTime​: 5/2/2015 5​:00​:39 AM, LastWriteTime​: 10/5/2013 1​:38​:22 AM, ChangeTime​: 8/1/2015 12​:26​:01 AM, FileAttributes​: A"
"1​:14​:49.9544131 AM","perl.exe","3800","C​:\Windows\System32\msvcr120.dll","CloseFile","SUCCESS",""
"1​:14​:49.9545502 AM","perl.exe","3800","C​:\Windows\System32\msvcr120.dll","CreateFile","SUCCESS","Desired Access​: Read Data/List Directory, Execute/Traverse, Synchronize, Disposition​: Open, Options​: Synchronous IO Non-Alert, Non-Directory File, Attributes​: n/a, ShareMode​: Read, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:14​:49.9545805 AM","perl.exe","3800","C​:\Windows\System32\msvcr120.dll","CreateFileMapping","FILE LOCKED WITH ONLY READERS","SyncType​: SyncTypeCreateSection, PageProtection​: PAGE_EXECUTE"
"1​:14​:49.9546135 AM","perl.exe","3800","C​:\Windows\System32\msvcr120.dll","CreateFileMapping","SUCCESS","SyncType​: SyncTypeOther"
"1​:14​:49.9546420 AM","perl.exe","3800","C​:\Windows\System32\msvcr120.dll","Load Image","SUCCESS","Image Base​: 0x62850000, Image Size​: 0xee000"
"1​:14​:49.9546565 AM","perl.exe","3800","C​:\Windows\System32\msvcr120.dll","CloseFile","SUCCESS",""
"1​:14​:49.9555714 AM","perl.exe","3800","C​:\Windows\System32\imm32.dll","CreateFile","SUCCESS","Desired Access​: Read Attributes, Disposition​: Open, Options​: Open Reparse Point, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:14​:49.9556844 AM","perl.exe","3800","C​:\Windows\System32\imm32.dll","QueryBasicInformationFile","SUCCESS","CreationTime​: 11/20/2010 4​:29​:20 PM, LastAccessTime​: 11/20/2010 4​:29​:20 PM, LastWriteTime​: 11/20/2010 4​:29​:20 PM, ChangeTime​: 4/3/2015 6​:57​:49 AM, FileAttributes​: A"
"1​:14​:49.9556932 AM","perl.exe","3800","C​:\Windows\System32\imm32.dll","CloseFile","SUCCESS",""
"1​:14​:49.9558281 AM","perl.exe","3800","C​:\Windows\System32\imm32.dll","CreateFile","SUCCESS","Desired Access​: Read Data/List Directory, Synchronize, Disposition​: Open, Options​: Synchronous IO Non-Alert, Non-Directory File, Attributes​: n/a, ShareMode​: Read, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:14​:49.9559493 AM","perl.exe","3800","C​:\Windows\System32\imm32.dll","CreateFileMapping","FILE LOCKED WITH ONLY READERS","SyncType​: SyncTypeCreateSection, PageProtection​: PAGE_READONLY"
"1​:14​:49.9559577 AM","perl.exe","3800","C​:\Windows\System32\imm32.dll","QueryStandardInformationFile","SUCCESS","AllocationSize​: 118,784, EndOfFile​: 118,272, NumberOfLinks​: 2, DeletePending​: False, Directory​: False"
"1​:14​:49.9571380 AM","perl.exe","3800","C​:\Windows\System32\imm32.dll","CreateFileMapping","SUCCESS","SyncType​: SyncTypeOther"
"1​:14​:49.9571829 AM","perl.exe","3800","C​:\Windows\System32\imm32.dll","CloseFile","SUCCESS",""
"1​:14​:49.9574127 AM","perl.exe","3800","C​:\Windows\System32\imm32.dll","CreateFile","SUCCESS","Desired Access​: Read Attributes, Disposition​: Open, Options​: Open Reparse Point, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:14​:49.9575120 AM","perl.exe","3800","C​:\Windows\System32\imm32.dll","QueryBasicInformationFile","SUCCESS","CreationTime​: 11/20/2010 4​:29​:20 PM, LastAccessTime​: 11/20/2010 4​:29​:20 PM, LastWriteTime​: 11/20/2010 4​:29​:20 PM, ChangeTime​: 4/3/2015 6​:57​:49 AM, FileAttributes​: A"
"1​:14​:49.9575199 AM","perl.exe","3800","C​:\Windows\System32\imm32.dll","CloseFile","SUCCESS",""
"1​:14​:49.9576324 AM","perl.exe","3800","C​:\Windows\System32\imm32.dll","CreateFile","SUCCESS","Desired Access​: Read Data/List Directory, Synchronize, Disposition​: Open, Options​: Synchronous IO Non-Alert, Non-Directory File, Attributes​: n/a, ShareMode​: Read, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:14​:49.9577348 AM","perl.exe","3800","C​:\Windows\System32\imm32.dll","CreateFileMapping","FILE LOCKED WITH ONLY READERS","SyncType​: SyncTypeCreateSection, PageProtection​: PAGE_READONLY"
"1​:14​:49.9577418 AM","perl.exe","3800","C​:\Windows\System32\imm32.dll","QueryStandardInformationFile","SUCCESS","AllocationSize​: 118,784, EndOfFile​: 118,272, NumberOfLinks​: 2, DeletePending​: False, Directory​: False"
"1​:14​:49.9577572 AM","perl.exe","3800","C​:\Windows\System32\imm32.dll","CreateFileMapping","SUCCESS","SyncType​: SyncTypeOther"
"1​:14​:49.9577902 AM","perl.exe","3800","C​:\Windows\System32\imm32.dll","CloseFile","SUCCESS",""
"1​:14​:49.9580121 AM","perl.exe","3800","C​:\Windows\System32\imm32.dll","CreateFile","SUCCESS","Desired Access​: Read Attributes, Disposition​: Open, Options​: Open Reparse Point, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:14​:49.9581303 AM","perl.exe","3800","C​:\Windows\System32\imm32.dll","QueryBasicInformationFile","SUCCESS","CreationTime​: 11/20/2010 4​:29​:20 PM, LastAccessTime​: 11/20/2010 4​:29​:20 PM, LastWriteTime​: 11/20/2010 4​:29​:20 PM, ChangeTime​: 4/3/2015 6​:57​:49 AM, FileAttributes​: A"
"1​:14​:49.9581395 AM","perl.exe","3800","C​:\Windows\System32\imm32.dll","CloseFile","SUCCESS",""
"1​:14​:49.9582788 AM","perl.exe","3800","C​:\Windows\System32\imm32.dll","CreateFile","SUCCESS","Desired Access​: Read Data/List Directory, Execute/Traverse, Synchronize, Disposition​: Open, Options​: Synchronous IO Non-Alert, Non-Directory File, Attributes​: n/a, ShareMode​: Read, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:14​:49.9584023 AM","perl.exe","3800","C​:\Windows\System32\imm32.dll","CreateFileMapping","FILE LOCKED WITH ONLY READERS","SyncType​: SyncTypeCreateSection, PageProtection​: PAGE_EXECUTE"
"1​:14​:49.9584388 AM","perl.exe","3800","C​:\Windows\System32\imm32.dll","CreateFileMapping","SUCCESS","SyncType​: SyncTypeOther"
"1​:14​:49.9585732 AM","perl.exe","3800","C​:\Windows\System32\imm32.dll","Load Image","SUCCESS","Image Base​: 0x77c00000, Image Size​: 0x1f000"
"1​:14​:49.9585873 AM","perl.exe","3800","C​:\Windows\System32\imm32.dll","CloseFile","SUCCESS",""
"1​:14​:49.9587833 AM","perl.exe","3800","C​:\Windows\System32\msctf.dll","Load Image","SUCCESS","Image Base​: 0x761b0000, Image Size​: 0xcc000"
"1​:14​:49.9604532 AM","perl.exe","3800","C​:\Windows\WindowsShell.Manifest","CreateFile","SUCCESS","Desired Access​: Generic Read/Execute, Disposition​: Open, Options​: Synchronous IO Non-Alert, Non-Directory File, Attributes​: n/a, ShareMode​: Read, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:14​:49.9604848 AM","perl.exe","3800","C​:\Windows\WindowsShell.Manifest","CreateFileMapping","FILE LOCKED WITH ONLY READERS","SyncType​: SyncTypeCreateSection, PageProtection​: PAGE_READONLY"
"1​:14​:49.9604918 AM","perl.exe","3800","C​:\Windows\WindowsShell.Manifest","QueryStandardInformationFile","SUCCESS","AllocationSize​: 4,096, EndOfFile​: 749, NumberOfLinks​: 1, DeletePending​: False, Directory​: False"
"1​:14​:49.9605063 AM","perl.exe","3800","C​:\Windows\WindowsShell.Manifest","CreateFileMapping","SUCCESS","SyncType​: SyncTypeOther"
"1​:14​:49.9605617 AM","perl.exe","3800","C​:\Windows\WindowsShell.Manifest","QueryStandardInformationFile","SUCCESS","AllocationSize​: 4,096, EndOfFile​: 749, NumberOfLinks​: 1, DeletePending​: False, Directory​: False"
"1​:14​:49.9605718 AM","perl.exe","3800","C​:\Windows\WindowsShell.Manifest","QueryBasicInformationFile","SUCCESS","CreationTime​: 7/13/2009 11​:41​:57 PM, LastAccessTime​: 7/13/2009 11​:41​:57 PM, LastWriteTime​: 7/13/2009 11​:41​:57 PM, ChangeTime​: 4/3/2015 6​:55​:37 AM, FileAttributes​: RHA"
"1​:14​:49.9614560 AM","perl.exe","3800","C​:\Windows\WindowsShell.Manifest","CloseFile","SUCCESS",""
"1​:14​:49.9627312 AM","perl.exe","3800","C​:\p523\src\perl523.dll","CreateFile","SUCCESS","Desired Access​: Read Attributes, Disposition​: Open, Options​: Open Reparse Point, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:14​:49.9627563 AM","perl.exe","3800","C​:\p523\src\perl523.dll","QueryBasicInformationFile","SUCCESS","CreationTime​: 2/10/2016 1​:10​:38 AM, LastAccessTime​: 2/10/2016 1​:10​:38 AM, LastWriteTime​: 2/10/2016 1​:10​:38 AM, ChangeTime​: 2/10/2016 1​:10​:38 AM, FileAttributes​: A"
"1​:14​:49.9627642 AM","perl.exe","3800","C​:\p523\src\perl523.dll","CloseFile","SUCCESS",""
"1​:14​:49.9628130 AM","perl.exe","3800","C​:\","CreateFile","SUCCESS","Desired Access​: Read Data/List Directory, Synchronize, Disposition​: Open, Options​: Directory, Synchronous IO Non-Alert, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:14​:49.9628450 AM","perl.exe","3800","C​:\p523","QueryDirectory","SUCCESS","Filter​: p523, 1​: p523"
"1​:14​:49.9651802 AM","perl.exe","3800","C​:\","CloseFile","SUCCESS",""
"1​:14​:49.9653367 AM","perl.exe","3800","C​:\p523","CreateFile","SUCCESS","Desired Access​: Read Data/List Directory, Synchronize, Disposition​: Open, Options​: Directory, Synchronous IO Non-Alert, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:14​:49.9653709 AM","perl.exe","3800","C​:\p523\src","QueryDirectory","SUCCESS","Filter​: src, 1​: src"
"1​:14​:49.9654021 AM","perl.exe","3800","C​:\p523","CloseFile","SUCCESS",""
"1​:14​:49.9655366 AM","perl.exe","3800","C​:\p523\src","CreateFile","SUCCESS","Desired Access​: Read Data/List Directory, Synchronize, Disposition​: Open, Options​: Directory, Synchronous IO Non-Alert, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:14​:49.9655638 AM","perl.exe","3800","C​:\p523\src\perl523.dll","QueryDirectory","SUCCESS","Filter​: perl523.dll, 1​: perl523.dll"
"1​:14​:49.9655907 AM","perl.exe","3800","C​:\p523\src","CloseFile","SUCCESS",""
"1​:14​:49.9656887 AM","perl.exe","3800","C​:\p523\src\perl.exe","QueryNameInformationFile","SUCCESS","Name​: \p523\src\perl.exe"
"1​:14​:49.9665684 AM","perl.exe","3800","C​:\Windows\Globalization\Sorting\SortDefault.nls","CreateFile","SUCCESS","Desired Access​: Generic Read, Disposition​: Open, Options​: Synchronous IO Non-Alert, Non-Directory File, Attributes​: N, ShareMode​: Read, AllocationSize​: n/a, OpenResult​: Opened"
"1​:14​:49.9666044 AM","perl.exe","3800","C​:\Windows\Globalization\Sorting\SortDefault.nls","CreateFileMapping","FILE LOCKED WITH ONLY READERS","SyncType​: SyncTypeCreateSection, PageProtection​: PAGE_READONLY"
"1​:14​:49.9666124 AM","perl.exe","3800","C​:\Windows\Globalization\Sorting\SortDefault.nls","QueryStandardInformationFile","SUCCESS","AllocationSize​: 2,945,024, EndOfFile​: 2,944,004, NumberOfLinks​: 2, DeletePending​: False, Directory​: False"
"1​:14​:49.9666299 AM","perl.exe","3800","C​:\Windows\Globalization\Sorting\SortDefault.nls","CreateFileMapping","SUCCESS","SyncType​: SyncTypeOther"
"1​:14​:49.9666523 AM","perl.exe","3800","C​:\Windows\Globalization\Sorting\SortDefault.nls","CloseFile","SUCCESS",""
"1​:14​:49.9670619 AM","perl.exe","3800","C​:\p523\src\site\5.23.8\lib","CreateFile","PATH NOT FOUND","Desired Access​: Read Attributes, Disposition​: Open, Options​: Open Reparse Point, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a"
"1​:14​:49.9671643 AM","perl.exe","3800","C​:\p523\src\site\lib","CreateFile","PATH NOT FOUND","Desired Access​: Read Attributes, Disposition​: Open, Options​: Open Reparse Point, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a"
"1​:14​:49.9674082 AM","perl.exe","3800","C​:\p523\src\lib","CreateFile","SUCCESS","Desired Access​: Read Attributes, Disposition​: Open, Options​: Open Reparse Point, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a, OpenResult​: Opened"
"1​:14​:49.9674359 AM","perl.exe","3800","C​:\p523\src\lib","QueryBasicInformationFile","SUCCESS","CreationTime​: 4/6/2015 3​:28​:26 AM, LastAccessTime​: 2/10/2016 1​:13​:52 AM, LastWriteTime​: 2/10/2016 1​:13​:52 AM, ChangeTime​: 2/10/2016 1​:13​:52 AM, FileAttributes​: DA"
"1​:14​:49.9674442 AM","perl.exe","3800","C​:\p523\src\lib","CloseFile","SUCCESS",""
"1​:14​:49.9675352 AM","perl.exe","3800","C​:\p523\src\lib\5.23.8\MSWin32-x86-multi-thread","CreateFile","PATH NOT FOUND","Desired Access​: Read Attributes, Synchronize, Disposition​: Open, Options​: Synchronous IO Non-Alert, Non-Directory File, Attributes​: n/a, ShareMode​: None, AllocationSize​: n/a"
"1​:14​:49.9676758 AM","perl.exe","3800","C​:\p523\src\lib\5.23.8","CreateFile","NAME NOT FOUND","Desired Access​: Read Data/List Directory, Synchronize, Disposition​: Open, Options​: Directory, Synchronous IO Non-Alert, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a"
"1​:14​:49.9677914 AM","perl.exe","3800","C​:\p523\src\lib\5.23.8\MSWin32-x86-multi-thread","CreateFile","PATH NOT FOUND","Desired Access​: Read Attributes, Disposition​: Open, Options​: Open Reparse Point, Attributes​: n/a, ShareMode​: Read, Write, Delete, AllocationSize​: n/a"
"1​:14​:49.9679276 AM","perl.exe","3800","C​:\p523\src\lib\5.23.8","CreateFile","NAME NOT FOUND","Desired Access​: Read Attributes, Synchronize, Disposition​: Open, Options​: Synchronous IO Non-Alert, Non-Directory File, Attributes​: n/a, ShareMode​: None, AllocationSize​: n/a"
"1​:14​:49.9680643 AM","perl.exe","3800","C​:\p523\src\lib\MSWin32-x86-multi-thread","CreateFile","NAME NOT FOUND","Desired Access​: Read Attributes, Synchronize, Disposition​: Open, Options​: Synchronous IO Non-Alert, Non-Directory File, Attributes​: n/a, ShareMode​: None, AllocationSize​: n/a"
"1​:14​:49.9692631 AM","perl.exe","3800","C​:\p523\src\nofile","CreateFile","NAME NOT FOUND","Desired Access​: Read Attributes, Synchronize, Disposition​: Open, Options​: Synchronous IO Non-Alert, Non-Directory File, Attributes​: n/a, ShareMode​: None, AllocationSize​: n/a"
"1​:14​:49.9693905 AM","perl.exe","3800","C​:\p523\src\nofile","CreateFile","NAME NOT FOUND","Desired Access​: Read Attributes, Synchronize, Disposition​: Open, Options​: Synchronous IO Non-Alert, Non-Directory File, Attributes​: n/a, ShareMode​: None, AllocationSize​: n/a"
"1​:14​:49.9695056 AM","perl.exe","3800","C​:\p523\src\nofile","CreateFile","NAME NOT FOUND","Desired Access​: Read Attributes, Synchronize, Disposition​: Open, Options​: Synchronous IO Non-Alert, Non-Directory File, Attributes​: n/a, ShareMode​: None, AllocationSize​: n/a"
"1​:14​:49.9696194 AM","perl.exe","3800","C​:\p523\src\nofile","CreateFile","NAME NOT FOUND","Desired Access​: Read Attributes, Synchronize, Disposition​: Open, Options​: Synchronous IO Non-Alert, Non-Directory File, Attributes​: n/a, ShareMode​: None, AllocationSize​: n/a"
"1​:14​:49.9697438 AM","perl.exe","3800","C​:\p523\src\nofile","CreateFile","NAME NOT FOUND","Desired Access​: Read Attributes, Synchronize, Disposition​: Open, Options​: Synchronous IO Non-Alert, Non-Directory File, Attributes​: n/a, ShareMode​: None, AllocationSize​: n/a"
"1​:14​:49.9698576 AM","perl.exe","3800","C​:\p523\src\nofile","CreateFile","NAME NOT FOUND","Desired Access​: Read Attributes, Synchronize, Disposition​: Open, Options​: Synchronous IO Non-Alert, Non-Directory File, Attributes​: n/a, ShareMode​: None, AllocationSize​: n/a"
"1​:14​:49.9699723 AM","perl.exe","3800","C​:\p523\src\nofile","CreateFile","NAME NOT FOUND","Desired Access​: Read Attributes, Synchronize, Disposition​: Open, Options​: Synchronous IO Non-Alert, Non-Directory File, Attributes​: n/a, ShareMode​: None, AllocationSize​: n/a"
"1​:14​:49.9700870 AM","perl.exe","3800","C​:\p523\src\nofile","CreateFile","NAME NOT FOUND","Desired Access​: Read Attributes, Synchronize, Disposition​: Open, Options​: Synchronous IO Non-Alert, Non-Directory File, Attributes​: n/a, ShareMode​: None, AllocationSize​: n/a"
"1​:14​:49.9702206 AM","perl.exe","3800","C​:\p523\src\nofile","CreateFile","NAME NOT FOUND","Desired Access​: Read Attributes, Synchronize, Disposition​: Open, Options​: Synchronous IO Non-Alert, Non-Directory File, Attributes​: n/a, ShareMode​: None, AllocationSize​: n/a"
"1​:14​:49.9703564 AM","perl.exe","3800","C​:\p523\src\nofile","CreateFile","NAME NOT FOUND","Desired Access​: Read Attributes, Synchronize, Disposition​: Open, Options​: Synchronous IO Non-Alert, Non-Directory File, Attributes​: n/a, ShareMode​: None, AllocationSize​: n/a"
"1​:14​:49.9704843 AM","perl.exe","3800","C​:\p523\src\nofile","CreateFile","NAME NOT FOUND","Desired Access​: Read Attributes, Synchronize, Disposition​: Open, Options​: Synchronous IO Non-Alert, Non-Directory File, Attributes​: n/a, ShareMode​: None, AllocationSize​: n/a"
"1​:14​:49.9710999 AM","perl.exe","3800","","Thread Exit","SUCCESS","Thread ID​: 3388, User Time​: 0.0000000, Kernel Time​: 0.0000000"

@p5pRT
Copy link
Author

p5pRT commented Feb 10, 2016

From @tonycoz

On Wed Feb 10 13​:04​:21 2016, bulk88 wrote​:

See attached patch.

Thanks, applied as d7a7ed7.

Tony

@p5pRT
Copy link
Author

p5pRT commented Feb 10, 2016

The RT System itself - Status changed from 'new' to 'open'

@p5pRT
Copy link
Author

p5pRT commented Feb 10, 2016

@tonycoz - Status changed from 'open' to 'pending release'

@p5pRT
Copy link
Author

p5pRT commented May 13, 2016

From @khwilliamson

Thank you for submitting this report. You have helped make Perl better.
 
With the release of Perl 5.24.0 on May 9, 2016, this and 149 other issues have been resolved.

Perl 5.24.0 may be downloaded via https://metacpan.org/release/RJBS/perl-5.24.0

@p5pRT
Copy link
Author

p5pRT commented May 13, 2016

@khwilliamson - Status changed from 'pending release' to 'resolved'

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant