request_memory_mmap_linux.c 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*
  2. * Copyright 2012 Institute of Communication and Computer Systems (ICCS)
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. *
  16. */
  17. /**
  18. * \file request_memory_mmap_linux.c
  19. * \author Ioannis Koutras
  20. * \date August, 2012
  21. * \brief Request additional memory space via mmap() in Linux.
  22. */
  23. #include "request_memory.h"
  24. #include <sys/stat.h> /* for open() */
  25. #include <fcntl.h> /* for open() */
  26. #include <sys/mman.h>
  27. static int dev_zero_fd = -1; /* Cached file descriptor for /dev/zero. */
  28. void *request_memory(size_t size) {
  29. int fd;
  30. void *zone;
  31. if(dev_zero_fd < 0) {
  32. dev_zero_fd = open("/dev/zero", O_RDWR);
  33. }
  34. fd = dev_zero_fd;
  35. zone = mmap(0, size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
  36. if(zone == MAP_FAILED) {
  37. return NULL;
  38. } else {
  39. return zone;
  40. }
  41. }