-
Notifications
You must be signed in to change notification settings - Fork 0
Queue implementation #63
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
base: main
Are you sure you want to change the base?
Conversation
eito-fis
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great! The concurrency portion w/ the runtime seems solid, and I see no issues with the queue. Only left a few small comments. Also, might be worth cleaning up the comment code in runtime and shell
| pthread_mutex_t wallet_pool_lock; | ||
| pthread_mutex_t key_pool_lock; | ||
| pthread_mutex_t mempool_lock; | ||
| int *miner_update; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there a reason to malloc this int?
| } | ||
|
|
||
| int shell_help(char **args) { | ||
| int shell_help(Globals *globals, char **args) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should (void)globals if unused
No description provided.