From 6c2c942696c3f71cb61598e8ea643ac4428e3e88 Mon Sep 17 00:00:00 2001 From: Simon Marlow Date: Thu, 18 Jun 2009 11:26:16 +0000 Subject: [PATCH] Add a comment to remind us that memcpy_src_off is used by dph --- include/HsBase.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/HsBase.h b/include/HsBase.h index f844bfd..6ed0faa 100644 --- a/include/HsBase.h +++ b/include/HsBase.h @@ -257,6 +257,7 @@ __hscore_sigismember( sigset_t * set, int s ) { return sigismember(set,s); } #endif +// This is used by dph:Data.Array.Parallel.Arr.BUArr, and shouldn't be INLINE void * __hscore_memcpy_dst_off( char *dst, int dst_off, char *src, size_t sz ) { return memcpy(dst+dst_off, src, sz); } -- 1.7.10.4