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.

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++.

share|improve this question

2 Answers

up vote 2 down vote accepted

Yes, FreeBSD has memory mapped files. No, the STL does not include any special support for them. Consider using Boost.

share|improve this answer

Any UNIX (Posix compliant OS) has mmap, so yes FreeBSD has it.

STL does not exist as such. (see e.g. What's this STL vs. "C++ Standard Library" fight all about?)

You mean:

Does the C++ standard library 'have' it?

No, the C++ standard library does not directly provide/wrap support for mmap. However, you can have a look here:

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.