I am using a FreeBSD OS, I want to write into a file which is on the disk, but, it will take a lot of time, so, I was suggested to use Memory mapped file. But, I am in a dilemma whether FreeBSD supports it or no???.. Please, somebody can guide me??.. I am programming in C++.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
Yes, FreeBSD has memory mapped files. No, the STL does not include any special support for them. Consider using Boost. |
|||
|
|
|
Any UNIX (Posix compliant OS) has STL does not exist as such. (see e.g. What's this STL vs. "C++ Standard Library" fight all about?) You mean:
No, the C++ standard library does not directly provide/wrap support for mmap. However, you can have a look here:
|
|||
|
|