request_memory_mmap_linux.c 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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 <dmmlib/config.h>
  24. #include "request_memory.h"
  25. #include <sys/stat.h> /* for open() */
  26. #include <fcntl.h> /* for open() */
  27. #include <sys/mman.h>
  28. #ifdef WITH_ALLOCATOR_STATS
  29. #include "dmmlib/dmmlib.h"
  30. #include "locks.h"
  31. #endif /* WITH_ALLOCATOR_STATS */
  32. static int dev_zero_fd = -1; /* Cached file descriptor for /dev/zero. */
  33. void *request_memory(size_t size) {
  34. int fd;
  35. void *zone;
  36. if(dev_zero_fd < 0) {
  37. dev_zero_fd = open("/dev/zero", O_RDWR);
  38. }
  39. fd = dev_zero_fd;
  40. zone = mmap(0, size, PROT_READ | PROT_WRITE, MAP_PRIVATE, fd, 0);
  41. if(zone == MAP_FAILED) {
  42. return NULL;
  43. } else {
  44. #ifdef WITH_ALLOCATOR_STATS
  45. LOCK_GLOBAL();
  46. systemallocator.dmm_stats.total_mem_allocated += size;
  47. UNLOCK_GLOBAL();
  48. #endif /* WITH_ALLOCATOR_STATS */
  49. return zone;
  50. }
  51. }