"git@repo.hca.bsc.es:rferrer/llvm-epi.git" did not exist on "016394b2806278cbe3b96f91550af0a7c86229a4"
- Oct 05, 2012
-
-
Jason Molenda authored
enabled after we'd found a few bugs that were caused by shadowed local variables; the most important issue this turned up was a common mistake of trying to obtain a mutex lock for the scope of a code block by doing Mutex::Locker(m_map_mutex); This doesn't assign the lock object to a local variable; it is a temporary that has its dtor called immediately. Instead, Mutex::Locker locker(m_map_mutex); does what is intended. For some reason -Wshadow happened to highlight these as shadowed variables. I also fixed a few obivous and easy shadowed variable issues across the code base but there are a couple dozen more that should be fixed when someone has a free minute. <rdar://problem/12437585> llvm-svn: 165269
-
- Apr 26, 2012
-
-
Jason Molenda authored
trying to mmap a file fails so parent caller function can provide helpful information to use about what went wrong. llvm-svn: 155617
-
- Jan 10, 2012
-
-
Greg Clayton authored
to fix the issues we run into on darwin even though the docs don't seems to say it will. llvm-svn: 147835
-
- Jan 06, 2012
-
-
rdar://problem/10647191Greg Clayton authored
Removed an extra call to close that was causing problems and also now use the Host::File class to open the file. llvm-svn: 147638
-
- Jul 08, 2011
-
-
Jason Molenda authored
CommandCompletions.cpp and DataBufferMemoryMap.cpp. The file type part of the st_mode struct member is not a bitmask. llvm-svn: 134669
-
- Apr 08, 2011
-
-
Stephen Wilson authored
Something changed in commit r129112 where a few standard headers vanished from the include chain when building on Linux. Fix up by including limits.h for INT_MAX and PATH_MAX where needed, and stdio.h for printf(). llvm-svn: 129130
-
- Apr 04, 2011
-
-
Greg Clayton authored
GDBRemoteCommunicationServer classes. This involved adding a new packet named "qSpeedTest" which can test the speed of a packet send/response pairs using a wide variety of send/recv packet sizes. Added a few new connection classes: one for shared memory, and one for using mach messages (Apple only). The mach message stuff is experimental and not working yet, but added so I don't lose the code. The shared memory stuff uses pretty standard calls to setup shared memory. llvm-svn: 128837
-
- Feb 08, 2011
-
-
Greg Clayton authored
We have a common unix implementation in lldb/source/Host/common/FileSpec.cpp. llvm-svn: 125078
-
- Jul 09, 2010
-
-
Greg Clayton authored
enabled LLVM make style building and made this compile LLDB on Mac OS X. We can now iterate on this to make the build work on both linux and macosx. llvm-svn: 108009
-
- Jun 09, 2010
-
-
Eli Friedman authored
llvm-svn: 105721
-
- Jun 08, 2010
-
-
Chris Lattner authored
llvm-svn: 105619
-