summaryrefslogtreecommitdiff
path: root/lib/entropy.c
Commit message (Collapse)AuthorAgeFilesLines
* lib: Move vlog.h to <openvswitch/vlog.h>Thomas Graf2014-12-151-2/+2
| | | | | | | | A new function vlog_insert_module() is introduced to avoid using list_insert() from the vlog.h header. Signed-off-by: Thomas Graf <tgraf@noironetworks.com> Acked-by: Ben Pfaff <blp@nicira.com>
* util: Pre-allocate buffer for ovs_lasterror_to_string().Gurucharan Shetty2014-02-141-3/+1
| | | | | | | | This lets us call ovs_lasterror_to_string() and not having to do an extra call of LocalFree() on the returned string. Signed-off-by: Gurucharan Shetty <gshetty@nicira.com> Acked-by: Ben Pfaff <blp@nicira.com>
* util: A generic function to convert error to string for windows.Gurucharan Shetty2014-01-281-11/+1
| | | | | | | More users will be added in an upcoming commit. Signed-off-by: Gurucharan Shetty <gshetty@nicira.com> Acked-by: Ben Pfaff <blp@nicira.com>
* entropy: Add Windows support.Alin Serdean2013-12-191-0/+29
| | | | | Signed-off-by: Alin Serdean <aserdean at cloudbasesolutions.com> Signed-off-by: Ben Pfaff <blp@nicira.com>
* Replace all uses of strerror() by ovs_strerror(), for thread safety.Ben Pfaff2013-06-281-2/+2
| | | | Signed-off-by: Ben Pfaff <blp@nicira.com>
* Global replace of Nicira Networks.Raju Subramanian2012-05-021-1/+1
| | | | | | | | Replaced all instances of Nicira Networks(, Inc) to Nicira, Inc. Feature #10593 Signed-off-by: Raju Subramanian <rsubramanian@nicira.com> Signed-off-by: Ben Pfaff <blp@nicira.com>
* Log anything that could prevent a daemon from starting.Ben Pfaff2011-04-041-2/+3
| | | | | If a daemon doesn't start, we need to know why. Being able to consistently consult the log to find out is helpful.
* Add a few more users for ovs_retval_to_string().Ben Pfaff2011-04-041-2/+1
|
* vlog: Make client supply semicolon for VLOG_DEFINE_THIS_MODULE.Ben Pfaff2010-10-291-1/+1
| | | | | It's kind of odd for VLOG_DEFINE_THIS_MODULE to supply its own semicolon, so this commit switches to the more common form.
* uuid: Break code to read /dev/urandom into a new module.Ben Pfaff2010-08-121-0/+65
This code is useful for seeding other random number generators, so we might as well make it a separate source file.