Add accessors for metadata constants.
[oota-llvm.git] / lib / System /
2009-07-02 Duncan SandsFix windows build, patch by Howard Su.
2009-07-01 Jeffrey YasskinAdd a portable strerror*() wrapper, llvm::sys::StrError...
2009-07-01 Owen AndersonTry again at making this work on OpenBSD.
2009-07-01 Owen AndersonFix the build on OpenBSD.
2009-06-30 Oscar FuentesFixed assert that checks return value of TlsSetValue.
2009-06-26 Owen AndersonFix compilation without pthreads.
2009-06-26 Daniel DunbarFix unused variable warnings.
2009-06-26 Owen AndersonFix error in the Win32 implementation pointed out by...
2009-06-25 Owen AndersonAdd support for const thread locals.
2009-06-25 Owen AndersonFix typo in assertion.
2009-06-25 Owen AndersonAdd a configure test for pthread_getspecific, and use...
2009-06-25 Owen AndersonUpdate cmake build files.
2009-06-25 Owen AndersonAdd a class for supporting platform independent thread...
2009-06-25 Owen AndersonGuard dynamic library loading.
2009-06-23 Owen AndersonAdd atomic multiply and divide operations, built on...
2009-06-23 Owen AndersonRevert my last series of commits related to Timer and...
2009-06-23 Owen AndersonAtomic ops that do arithmetic use signed arithmetic.
2009-06-23 Owen AndersonLabel the existing atomic functions as 32-bit specific...
2009-06-23 Owen AndersonAdd an atomic add operation.
2009-06-20 Owen AndersonWorkaround for an... interesting bug in Darwin's pthrea...
2009-06-19 Owen AndersonFix bad paste-o in the MSVC atomics.
2009-06-18 Owen AndersonGive RWMutex the SmartRWMutex treatment too.
2009-06-18 Owen AndersonInsert a SmartMutex templated class into the class...
2009-06-18 Ted KremenekUpdate CMake files to account for new location of Threa...
2009-06-18 Owen AndersonMove Threading.[h|cpp] from Support to System.
2009-06-18 Owen AndersonFix build when disable thread support.
2009-06-17 Douglas GregorAdd RWMutex.cpp to the CMake makefiles
2009-06-17 Owen AndersonImprove the Win32 reader-writer lock implementation...
2009-06-17 Owen AndersonUse atomic increment/decrement for reference counting...
2009-06-17 Owen AndersonAdd an atomic increment and decrement implementation...
2009-06-16 Owen AndersonAccidentally broke this file.
2009-06-16 Owen AndersonRemove the Win32 implementation, since it doesn't compi...
2009-06-16 Owen AndersonFix/cleanup trailing newlines.
2009-06-16 Owen AndersonAdd a portable wrapper for reader-writer locks.
2009-06-15 Dan Gohmanglibc has two versions of strerror_r, a standards compl...
2009-06-15 Chris Lattner"This patch implements the method with the GetModuleFil...
2009-06-15 Chris Lattneradd a new static method to portably determine whether...
2009-06-04 Torok EdwinFix comments.
2009-06-04 Torok EdwinAdd support for outputting ANSI colors to raw_fd_ostream.
2009-06-03 Duncan SandsAt a newline at the end of this file.
2009-06-02 Owen AndersonUndef MemoryFence when compiling on MSVC.
2009-05-30 Bill WendlingUntabification.
2009-05-23 Jay FoadWork around a page size issue on Cygwin.
2009-05-21 Owen AndersonAdd Atomic.cpp to the CMake build system.
2009-05-20 Owen AndersonTabs, be gone!
2009-05-20 Owen AndersonI just fail today.
2009-05-20 Owen AndersonCopy-and-paste-o.
2009-05-20 Owen AndersonMove atomic operations' definitions out of line. While...
2009-05-18 Douglas Gregortermios.h contains the winsize structure we need to...
2009-05-11 Douglas GregorAdd terminal width detection to llvm::sys::Process...
2009-04-28 Stefanus Du ToitFix choice of version of Windows callback to use to...
2009-04-25 Torok EdwinFix g++-4.4.0 warning, it was causing llvm-nm to fail...
2009-04-21 Anton KorobeynikovSilence warnings.
2009-04-21 Anton KorobeynikovDrop obsolete reference to __eprintf.
2009-04-20 Daniel DunbarMake Unix.h:MakeErrMsg separate the prefix and errno...
2009-04-14 Mikhail GlushenkovCall CreateProcess with bInheritHandles = TRUE.
2009-04-14 Mikhail GlushenkovDelete trailing whitespace.
2009-04-12 Chris Lattnerfix PR3965:SIGINT handler not restored after calling...
2009-04-09 Daniel DunbarAdd sys::Path::makeAbsolute().
2009-04-01 Chris Lattnerhopefully fix an apparent build error on windows.
2009-03-31 Daniel DunbarAdd llvm::sys::getHostTriple and remove
2009-03-23 Chris Lattnerfix a bug Alexei Svitkine pointed out.
2009-03-23 Chris LattnerWhen we restore signal handlers, restore them back...
2009-03-23 Chris Lattnerfactorize signal registration, part of PR3848.
2009-03-19 Sebastian RedlFix the Win32 VS2008 build:
2009-03-08 Chris Lattneradd some explicit llvm:: qualifiers to the unix side...
2009-03-07 Chris LattnerWhen a crash signal is delivered do two things: remove...
2009-03-05 Chris Lattnermove some code to gracefully handle the case when a...
2009-03-04 Chris LattnerAdd a new 'AddSignalHandler' function to Signals.h...
2009-03-02 Chris LattnerFix main executable path name resolution on FreeBSD...
2009-02-19 Chris LattnerIf an executable is run through a symlink, dladdr will...
2009-02-15 Mikhail GlushenkovFix warning on gcc 4.3.
2009-02-15 Mikhail GlushenkovWhitespace fixes.
2009-02-14 Cedric VenetUnbreak the build on win32.
2009-02-12 Julien LerougeFix MingW build, patch by Kenneth Boyd!
2009-02-10 Dan GohmanUse const, to support platforms where strrchr returns...
2009-02-08 Mikhail GlushenkovAdd a Sleep() function.
2009-02-08 Mikhail GlushenkovAdd Emacs hints to Alarm.inc.
2009-01-29 Chris LattnerFix windows build, patch by Marius Wachtler!
2009-01-29 Chris LattnerFix PR3424, a static constructor ordering issue. Patch...
2009-01-22 Chris Lattnerrename methods in System/Host to be more consistent.
2009-01-09 Misha BrukmanRemoved trailing whitespace from Makefiles.
2008-12-05 Dan GohmanDon't use plain %x to print pointer values. I had chang...
2008-12-05 Dan GohmanDemangle and pretty-print symbols in internal backtrace...
2008-11-14 Evan ChengARM / Mac OS X also wants to invalidate icache after...
2008-11-12 Oscar FuentesCMake: when bulding shared libraries on non-WIN32 syste...
2008-11-06 Nuno Lopesplug leakage of mutex data. pthread_mutex_destroy(...
2008-11-04 Evan ChenghasDisassembler should return false if disassembler...
2008-11-02 Anton KorobeynikovSilence a warning
2008-10-20 Jim GrosbachUpdate the stub and callback code to handle lazy compil...
2008-10-08 Duncan SandsAdd <cstdio> include where needed by gcc-4.4.
2008-10-04 Argyrios KyrtzidisAdd implementations for sys::Memory::setWritable and...
2008-10-03 Jim GrosbachOn Darwin ARM, memory needs special handling to do...
2008-10-02 Oscar FuentesCMake: Added Host.cpp to lib/System/CMakeLists.txt.
2008-10-02 Daniel DunbarAdd llvm::sys::{osName,osVersion} for retrieving operat...
2008-09-22 Oscar FuentesInitial support for the CMake build system.
2008-09-18 Evan ChengPreliminary support for systems which require changing...
2008-09-16 Evan ChengAllocateRWXMemory -> AllocateRWX.
2008-08-11 Chris Lattneradd a helper method to sys::Path for clang, patch by
2008-07-24 Devang PatelCreate temp. file in current path.
next