1
0
mirror of https://github.com/open-simh/simh.git synced 2026-04-26 04:07:23 +00:00

Compiler suggested cleanups

This commit is contained in:
Mark Pizzolato
2013-04-13 05:25:25 -07:00
parent 6fd3e5f498
commit 34ad155854
3 changed files with 5 additions and 3 deletions

View File

@@ -721,7 +721,7 @@ extern int32 sim_asynch_latency;
extern int32 sim_asynch_inst_latency;
/* Thread local storage */
#if defined(__GNUC__) && !defined(__APPLE__) && !defined(__hpux)
#if defined(__GNUC__) && !defined(__APPLE__) && !defined(__hpux) && !defined(__OpenBSD__)
#define AIO_TLS __thread
#elif defined(_MSC_VER)
#define AIO_TLS __declspec(thread)