summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/common/memops.h
diff options
context:
space:
mode:
authorDave Airlie <airliedfreedesktop.org>2005-03-05 06:38:59 +0000
committerDave Airlie <airliedfreedesktop.org>2005-03-05 06:38:59 +0000
commit07561c6b32d55128222283a7450c65c95d21df59 (patch)
tree10cbb0da65bb26d71c5e2731efff465f1f685714 /src/mesa/drivers/dri/common/memops.h
parenta4296239d41101ec778ef6cf998847d341433b72 (diff)
Fixing memset on ia64 & other archs
From: Stephane Marchesin
Diffstat (limited to 'src/mesa/drivers/dri/common/memops.h')
-rw-r--r--src/mesa/drivers/dri/common/memops.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/common/memops.h b/src/mesa/drivers/dri/common/memops.h
new file mode 100644
index 0000000000..4952d788e8
--- /dev/null
+++ b/src/mesa/drivers/dri/common/memops.h
@@ -0,0 +1,17 @@
+#ifndef DRIMEMSETIO_H
+#define DRIMEMSETIO_H
+/*
+* memset an area in I/O space
+* We need to be careful about this on some archs
+*/
+static __inline__ void drimemsetio(void* address, int c, int size)
+{
+#if defined(__powerpc__) || defined(__ia64__)
+ int i;
+ for(i=0;i<size;i++)
+ *((char *)address + i)=c;
+#else
+ memset(address,c,size);
+#endif
+}
+#endif