summaryrefslogtreecommitdiff
path: root/src/palrt/coguid.cpp
AgeCommit message (Collapse)AuthorFilesLines
2016-12-23Remove all usage of vsnprintf (#8709)Jan Vorlicek1-1/+1
This change removes all usages of vsnprintf and modifies runtime to not to use vsnprintf or _vsnprintf I've also fixed two issues in PAL TRACE function string format parameters that caused crashes when I was trying to run all PAL tests with PAL tracing enabled.
2016-01-27Update license headersdotnet-bot1-4/+3
2015-10-13Implement CoCreateGuid using uuid_generate on UnixJan Vorlicek1-11/+0
We were generating GUIDs on Unix as random numbers. But that is not correct since GUIDs have defined structure with bits having specific meanings. For example, there are four bits that represent the type of the GUID, which means whether the guid is randomly generated, name based on SHA1, time based etc. This change changes the CoCreateGuid to use the uuid_generate function from the uuid library that should generate well-formed GUIDs on Linux and OSX and the uuid_create on FreeBSD.
2015-01-30Initial commit to populate CoreCLR repo dotnet-bot1-0/+205
[tfs-changeset: 1407945]