-
Notifications
You must be signed in to change notification settings - Fork 130
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
[Bug] Is that wrong? (IDFGH-9835) #54
Comments
github-actions
bot
changed the title
[Bug] Is that wrong?
[Bug] Is that wrong? (IDFGH-9835)
Apr 9, 2023
It is wrong, yes! not a big issue though, typedef struct sys_sem * sys_sem_t; which means that sizeof(sys_sem_t*) == sizeof(sys_sem_t) == sizeof(void*) But it's incorrect and should be fixed, thanks for noticing! |
igrr
pushed a commit
that referenced
this issue
Aug 14, 2023
This is a minor fix, as sys_sem_t is defined as `typedef struct sys_sem * sys_sem_t;` so the size is still the same (size of pointer) Closes #54
Fixed in d6b0060 |
david-cermak
added a commit
to david-cermak/esp-lwip
that referenced
this issue
Apr 23, 2024
This is a minor fix, as sys_sem_t is defined as `typedef struct sys_sem * sys_sem_t;` so the size is still the same (size of pointer) Closes espressif#54
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
esp-lwip/test/apps/linux/sys_arch.c
Line 666 in d5e56d0
The text was updated successfully, but these errors were encountered: