]> Zhao Yanbai Git Server - minix.git/commitdiff
Remove obsolete MIOC(UN)MAP requests 46/2846/1
authorDavid van Moolenbroek <david@minix3.org>
Mon, 29 Sep 2014 16:05:22 +0000 (16:05 +0000)
committerDavid van Moolenbroek <david@minix3.org>
Mon, 29 Sep 2014 16:16:22 +0000 (16:16 +0000)
Change-Id: I915ac759bc80a50aad21c12f088ad6c345a42986

minix/include/sys/ioc_memory.h
minix/include/sys/vm.h

index 94c561c02a2f04763ca2c22cfde825e50c44c3de..f025a55bbe58a14e4acd1b2a0139a51d650e4b3e 100644 (file)
@@ -10,7 +10,5 @@
 #include <minix/ioctl.h>
 
 #define MIOCRAMSIZE    _IOW('m', 3, u32_t)
-#define MIOCMAP                _IOW('m', 4, struct mapreq)
-#define MIOCUNMAP      _IOW('m', 5, struct mapreq)
 
 #endif /* _S_I_MEMORY_H */
index c211a2f2e984239a19e7b726792f8b46be7a0db4..8cc23bf0aa07110e0704cfdb7fdac95b463ef580 100644 (file)
@@ -5,15 +5,6 @@
 sys/vm.h
 */
 
-/* MIOCMAP */
-struct mapreq
-{
-       void *base;
-       size_t size;
-       off_t offset;
-       int readonly;
-};
-
 /* used in ioctl to tty for mapvm map and unmap request. */
 struct mapreqvm
 {