-
Notifications
You must be signed in to change notification settings - Fork 77
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Minor issues using m-array.h and m-concurrent.h #40
Comments
Both issues should be fixed in master. |
Now I'm getting at runtime an assertion error on the CONCURRENT_DEF point: |
Can I have the source of this error to investigate? |
You forget to init keys. You should add in main: key_list_ts_init(keys); |
Yes: stupid error. I didn't use such container on first runs because of other bug. On the other side it worker on some runs before but I was just lucky (maybe you added further controls on last commits). |
Trying to write an ad-hoc benchmark for #39 I spotted few minor issues trying to get a thread-safe array container:
_size
is not exposed in the concurrent version: I can't get the number of elements in such kind of array.The text was updated successfully, but these errors were encountered: