Browse Source

build/mingw: style fixup after tonobitc merge.

Use `#defined(...)` instead of `#defined ...`.

Remove comments about issues - anyone removing those lines can check blame
to see why they were added.

Add tonobitc to AUTHORS.md.
nfactor-troky
Noel Maersk 11 years ago
parent
commit
ed61c38ec8
  1. 1
      AUTHORS.md
  2. 2
      compat.h
  3. 4
      sgminer.c

1
AUTHORS.md

@ -25,6 +25,7 @@ updated by many others.
* Benjamin Herrenschmidt <ozbenh> * Benjamin Herrenschmidt <ozbenh>
* Joe4782 * Joe4782
* gacheson * gacheson
* tonobitc
...and many others. See: ...and many others. See:

2
compat.h

@ -47,7 +47,7 @@ static inline int nanosleep(const struct timespec *req, struct timespec *rem)
} }
#endif #endif
#if defined __MINGW32__ && !defined __MINGW64_VERSION_MAJOR #if defined(__MINGW32__) && !defined(__MINGW64_VERSION_MAJOR)
// Reported unneded in https://github.com/veox/sgminer/issues/37 */ // Reported unneded in https://github.com/veox/sgminer/issues/37 */
static inline int sleep(unsigned int secs) static inline int sleep(unsigned int secs)
{ {

4
sgminer.c

@ -35,7 +35,7 @@
#ifndef WIN32 #ifndef WIN32
#include <sys/resource.h> #include <sys/resource.h>
#else #else
#include <winsock2.h> //before windows.h to resolve ws2tcpip.h conflict https://github.com/veox/sgminer/issues/12 #include <winsock2.h>
#include <windows.h> #include <windows.h>
#endif #endif
#include <ccan/opt/opt.h> #include <ccan/opt/opt.h>
@ -3044,7 +3044,7 @@ static void kill_mining(void)
if (thr && PTH(thr) != 0L) if (thr && PTH(thr) != 0L)
pth = &thr->pth; pth = &thr->pth;
thr_info_cancel(thr); thr_info_cancel(thr);
#if !defined WIN32 || defined __MINGW64_VERSION_MAJOR #if !defined(WIN32) || defined(__MINGW64_VERSION_MAJOR)
if (pth && *pth) if (pth && *pth)
pthread_join(*pth, NULL); pthread_join(*pth, NULL);
#else #else

Loading…
Cancel
Save