Date: Wed, 23 Sep 2009 14:21:23 GMT From: Stanislav Sedov <stas@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 168817 for review Message-ID: <200909231421.n8NELNek045079@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=168817 Change 168817 by stas@stas_yandex on 2009/09/23 14:21:00 - Fix hellgrind build. Affected files ... .. //depot/projects/valgrind/helgrind/hg_intercepts.c#4 edit Differences ... ==== //depot/projects/valgrind/helgrind/hg_intercepts.c#4 (text+ko) ==== @@ -1159,7 +1159,7 @@ //----------------------------------------------------------- // glibc: pthread_spin_destroy // darwin: (doesn't appear to exist) -#if defined(VGO_linux) +#if defined(VGO_linux) || defined(VGO_freebsd) PTH_FUNC(int, pthreadZuspinZudestroy, // pthread_spin_destroy pthread_spinlock_t* lock) @@ -1196,7 +1196,7 @@ //----------------------------------------------------------- // glibc: pthread_spin_lock // darwin: (doesn't appear to exist) -#if defined(VGO_linux) +#if defined(VGO_linux) || defined(VGO_freebsd) PTH_FUNC(int, pthreadZuspinZulock, // pthread_spin_lock pthread_spinlock_t* lock) @@ -1241,7 +1241,7 @@ //----------------------------------------------------------- // glibc: pthread_spin_trylock // darwin: (doesn't appear to exist) -#if defined(VGO_linux) +#if defined(VGO_linux) || defined(VGO_freebsd) PTH_FUNC(int, pthreadZuspinZutrylock, // pthread_spin_trylock pthread_spinlock_t* lock)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200909231421.n8NELNek045079>