|
From: <sv...@va...> - 2009-06-06 08:56:09
|
Author: bart
Date: 2009-06-06 09:56:00 +0100 (Sat, 06 Jun 2009)
New Revision: 10260
Log:
Disabled libgomp intercepts. Since libgomp support was added to DRD, the
libgomp ABI has changed. Two new functions have been added, namely
gomp_team_barrier_wait() and gomp_team_barrier_wake(). The simplest way
to support all libgomp functions is by disabling the libgomp intercepts.
This fixes bug #195169.
Modified:
branches/DRDDEV/drd/drd_gomp_intercepts.c
Modified: branches/DRDDEV/drd/drd_gomp_intercepts.c
===================================================================
--- branches/DRDDEV/drd/drd_gomp_intercepts.c 2009-06-06 08:51:13 UTC (rev 10259)
+++ branches/DRDDEV/drd/drd_gomp_intercepts.c 2009-06-06 08:56:00 UTC (rev 10260)
@@ -59,6 +59,8 @@
// Function definitions.
+#if 0
+
GOMP_FUNC(void, gompZubarrierZuinit, // gomp_barrier_init
gomp_barrier_t* barrier, unsigned count)
{
@@ -115,3 +117,5 @@
VALGRIND_DO_CLIENT_REQUEST(res, -1, VG_USERREQ__POST_BARRIER_WAIT,
barrier, gomp_barrier, 1, 0, 0);
}
+
+#endif
|