You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 27, 2025. It is now read-only.
Describe the bug
The file
mailbox.hof the hello_fft applicationhttps://github.com/raspberrypi/userland/blob/3fd8527eefd8790b4e8393458efc5f94eb21a615/host_applications/linux/apps/hello_pi/hello_fft/mailbox.h
contains a declaration
unsigned get_version(int file_desc);This declaration is used nowhere in the code. In particular
https://github.com/raspberrypi/userland/blob/3fd8527eefd8790b4e8393458efc5f94eb21a615/host_applications/linux/apps/hello_pi/hello_fft/mailbox.c
does not contain an implementation of this function.
Expected behaviour
I would expect that either
mailbox.ccontains an implementation ofget_versionorget_versionis removed frommailbox.hsince no implementation of it exits.If it is decided to choose 1., it would make sense that
get_versionis used in hello_fft (https://github.com/raspberrypi/userland/tree/3fd8527eefd8790b4e8393458efc5f94eb21a615/host_applications/linux/apps/hello_pi/hello_fft).Actual behaviour
See section "Describe the bug".