Changeset 33279 in vbox
- Timestamp:
- Oct 20, 2010 9:37:58 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 66847
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 3 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/Makefile.kmk
r33269 r33279 643 643 generic/RTProcIsRunningByName-generic.cpp \ 644 644 generic/RTThreadGetNativeState-generic.cpp \ 645 r3/darwin/alloc-darwin.cpp \646 645 r3/darwin/filelock-darwin.cpp \ 647 646 r3/darwin/mp-darwin.cpp \ … … 652 651 r3/darwin/time-darwin.cpp \ 653 652 r3/posix/RTFileQueryFsSizes-posix.cpp \ 653 r3/posix/RTMemProtect-posix.cpp \ 654 654 r3/posix/RTSystemQueryOSInfo-posix.cpp \ 655 655 r3/posix/RTTimeSet-posix.cpp \ … … 659 659 r3/posix/fs-posix.cpp \ 660 660 r3/posix/ldrNative-posix.cpp \ 661 r3/posix/rtmempage-exec-mmap-heap-posix.cpp \ 661 662 r3/posix/path-posix.cpp \ 662 663 r3/posix/pipe-posix.cpp \ … … 700 701 generic/RTThreadGetNativeState-generic.cpp \ 701 702 r3/freebsd/mp-freebsd.cpp \ 702 r3/freebsd/alloc-freebsd.cpp \703 703 r3/freebsd/rtProcInitExePath-freebsd.cpp \ 704 704 r3/posix/RTFileQueryFsSizes-posix.cpp \ 705 r3/posix/RTMemProtect-posix.cpp \ 705 706 r3/posix/RTSystemQueryOSInfo-posix.cpp \ 706 707 r3/posix/dir-posix.cpp \ … … 710 711 r3/posix/fs-posix.cpp \ 711 712 r3/posix/ldrNative-posix.cpp \ 713 r3/posix/rtmempage-exec-mmap-heap-posix.cpp \ 712 714 r3/posix/path-posix.cpp \ 713 715 r3/posix/pathhost-posix.cpp \ … … 747 749 generic/RTThreadGetNativeState-generic.cpp \ 748 750 r3/posix/RTFileQueryFsSizes-posix.cpp \ 751 r3/posix/RTMemProtect-posix.cpp \ 749 752 r3/posix/RTSystemQueryOSInfo-posix.cpp \ 750 753 r3/posix/dir-posix.cpp \ … … 754 757 r3/posix/fs-posix.cpp \ 755 758 r3/posix/ldrNative-posix.cpp \ 759 r3/posix/rtmempage-exec-mmap-heap-posix.cpp \ 756 760 r3/posix/path-posix.cpp \ 757 761 r3/posix/pathhost-posix.cpp \ … … 772 776 r3/posix/tls-posix.cpp \ 773 777 r3/posix/utf8-posix.cpp \ 774 r3/solaris/alloc-solaris.cpp \775 778 r3/solaris/mp-solaris.cpp \ 776 779 r3/solaris/rtProcInitExePath-solaris.cpp -
trunk/src/VBox/Runtime/r3/posix/rtmempage-exec-mmap-heap-posix.cpp
r33269 r33279 45 45 #include <errno.h> 46 46 #include <sys/mman.h> 47 #if !defined(MAP_ANONYMOUS) && defined(MAP_ANON) 48 # define MAP_ANONYMOUS MAP_ANON 49 #endif 50 47 51 48 52 -
trunk/src/VBox/Runtime/r3/posix/rtmempage-exec-mmap-posix.cpp
r33269 r33279 41 41 #include <errno.h> 42 42 #include <sys/mman.h> 43 #if !defined(MAP_ANONYMOUS) && defined(MAP_ANON) 44 # define MAP_ANONYMOUS MAP_ANON 45 #endif 43 46 44 47
Note:
See TracChangeset
for help on using the changeset viewer.