blob: eab6008386ea1164b3b8e837f82a62a21e7641ac (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
--- ../picturebook.old/ptable.c Mon Dec 25 19:01:43 2000
+++ ptable.c Mon Dec 25 19:03:21 2000
@@ -38,8 +38,11 @@
perror("virt_to_phys: open(/dev/mem)");
exit(1);
}
-
+#ifdef LINUX
vmem = memalign(PAGE_SIZE, (npages+1)*PAGE_SIZE);
+#else __FreeBSD__
+ vmem = malloc((npages+1)*PAGE_SIZE);/*Never mind!PAGESIZE aligned memalign is equivalent to valloc and see valloc(3).*/
+#endif
if (!vmem) {
printf("failed to allocate ptable\n");
exit(1);
|