Boost logo

Boost Users :

Subject: Re: [Boost-users] boost managed shared memory: RUN FAILED
From: Joshua Boyce (raptorfactor_at_[hidden])
Date: 2012-12-03 05:59:58


On Fri, Nov 30, 2012 at 10:00 PM, Olivier Austina <olivier.austina_at_[hidden]
> wrote:

> Hello,
>
> This is the details of the error I got (with Netbeans) :
>
> 12 [main] cppapplication_4 3608 exception::handle: Exception:
> STATUS_ACCESS_VIOLATION
> 371 [main] cppapplication_4 3608 open_stackdumpfile: Dumping stack
> trace to cppapplication_4.exe.stackdump
>
>
> RUN FAILED (exit value 35 584, total time: 2s)
>
> Many thanks
>
>
> 2012/11/30 Olivier Austina <olivier.austina_at_[hidden]>
>
>> Hello,
>>
>> I try to run an example from this online book(
>> http://en.highscore.de/cpp/boost/interprocesscommunication.html) and I
>> got "RUN FAILED (exit value 1, total time: 938ms) ". I am using Netbeans.
>> This is the example:
>>
>>
>> #include <boost/interprocess/managed_shared_memory.hpp>
>> #include <iostream>
>>
>> int main()
>> {
>> boost::interprocess::shared_memory_object::remove("Highscore");
>> boost::interprocess::managed_shared_memory managed_shm(boost::interprocess::open_or_create, "Highscore", 1024);
>> int *i = managed_shm.construct<int>("Integer")(99);
>> std::cout << *i << std::endl;
>> std::pair<int*, std::size_t> p = managed_shm.find<int>("Integer");
>> if (p.first)
>> std::cout << *p.first << std::endl;
>> }
>>
>>
>> Thanks very much.
>> --
>> Regards
>> Austina
>>
>>
>>
>
>
> --
> Regards
> Austina
>
>
>
> _______________________________________________
> Boost-users mailing list
> Boost-users_at_[hidden]
> http://lists.boost.org/mailman/listinfo.cgi/boost-users

You may have more luck getting an answer if you post the generated stack
dump (cppapplication_4.exe.stackdump).



Boost-users list run by williamkempf at hotmail.com, kalb at libertysoft.com, bjorn.karlsson at readsoft.com, gregod at cs.rpi.edu, wekempf at cox.net