- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
A_MAP.insert(std::pair<uint16_t, THE_STRUCT_TYPE>(Key, A_STRUCT))
A_MAP[Key] = A_STRUCT; Both methods work on Visual C++ Express 2012. Both methods fail on VxWorks at run-time with Signal 11. However, the following does not crash on VxWorks (but since nothing has been inserted, the pair values will be the (un)initialized values): std::map<uint16_t, THE_STRUCT_TYPE>::iterator itBegin = A_MAP.begin; printf("A_MAP.begin = %d\n", itBegin); I woudl appreciate assistance/guidance from anyone with knowledge of the use of STL maps on VxWorks v6.8. The two methods described use copy construction. Thsi may be the problem for VxWorks, e.g., it may not support copying user defined types. A third method, emplace(), constructs in place but is only available in "C++ 2011". FWIW: typedef THE_STRUCT_TYPE { char a_char; uint16_t an_int_array[20]; char a_char_array[10]; uint16_t an_int; } THE_STRUCT_TYPE Any news on the use of the map container in v6.8 ? This is really a straightforward usage. Some documentation exists regarding compile/link flags to specify the range of STL functionality that's available, and even which compler (Diablo/EDG/VxWorks C++ versus GNU C++) to use. This is an administerred tool, for which I have little control/access, adminned by administrators to whom I have little access, so getting license numbers, C++ compiler usage info, etc., is difficult. I woudl like to know, though, if this type of failure justifies makign that type of effort. Also, does v6.9 implement the C++ 2011 Standard, specifically the std::unordered_map container ?Link Copied
2 Replies
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Solved.
It seems that, to which I have elsewhere seen it alluded, the mapped type must, at least in some cases, be a pointer; presumably solving the copy construction prohibition and the unavailability, in pre-C++-2011 installations, of the emplace method. Thus, declaration of the map object would be accomplished as follows: std::map<uint16_t, THE_STRUCT_TYPE*> A_MAP; Insertion procedes as: A_MAP[Key] = &A_STRUCT; Question remaining open: Does v6.9 implement the C++ 2011 Standard, specifically the std::unordered_map container ?- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Moving to the new "Other Operating Systems" forum. This is where all non-Linux OS related questions will go moving forward.

Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page