Add a comment to remind us that memcpy_src_off is used by dph
authorSimon Marlow <marlowsd@gmail.com>
Thu, 18 Jun 2009 11:26:16 +0000 (11:26 +0000)
committerSimon Marlow <marlowsd@gmail.com>
Thu, 18 Jun 2009 11:26:16 +0000 (11:26 +0000)
include/HsBase.h

index f844bfd..6ed0faa 100644 (file)
@@ -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); }