Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_arc4random.h « machine « include « cygwin « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3ce2458095d91a3b1db1b59372003d528a20b852 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* machine/_arc4random.h

   Copyright 2016 Red Hat, Inc.

This file is part of Cygwin.

This software is a copyrighted work licensed under the terms of the
Cygwin license.  Please consult the file "CYGWIN_LICENSE" for
details. */

#ifndef _MACHINE_ARC4RANDOM_H
#define _MACHINE_ARC4RANDOM_H

extern int __isthreaded;

#define _ARC4_LOCK_INIT	__LOCK_INIT(static, _arc4random_mutex);

#define _ARC4_LOCK()				\
        do {					\
	  if (__isthreaded)			\
	    __lock_acquire (_arc4random_mutex);	\
        } while (0)

#define _ARC4_UNLOCK()				\
        do {					\
	  if (__isthreaded)			\
	    __lock_release (_arc4random_mutex);	\
        } while (0)

#endif /* _MACHINE_ARC4RANDOM_H */