kus
unread,Mar 23, 2017, 5:45:42 AM3/23/17You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
Hi,
As many of the readers have read from my precious posts,
this post deals with issue of multithreading.So,
my question is which type of container should i use so that from one
thread i am doing only write operation on the thread.But other threads,
just either perform modification on that container(it maybe update on
the element or removal of element according to condtion satisfied)or
read operation on the container.In most of the cases,using stl
containers like deque and vector am not able to eradicate the issue of
invariant broken thus causing segmentation fault.So,what strategy should
i use and which container suits best for the situation?