Remove obsolete MIOC(UN)MAP requests

Change-Id: I915ac759bc80a50aad21c12f088ad6c345a42986
This commit is contained in:
David van Moolenbroek 2014-09-29 16:05:22 +00:00
parent f4bd5678c6
commit 6990e61341
2 changed files with 0 additions and 11 deletions

View 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 */

View 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
{