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
Linux is distinguished in RTMA library by a USE_LINUX compiler input definition, but also defines or uses __UNIX_C__ and __unix__ macros. __unix__ is not defined on Mac but __APPLE__ is. Currently UNIX/APPLE should be treated the same (except that MSG_NOSIGNAL is undefined on Mac, but this has been handled). The need for a USE_LINUX compiler option could be eliminated by using standard OS macros (e.g. __unix__ and __APPLE__)
The text was updated successfully, but these errors were encountered:
Linux is distinguished in RTMA library by a
USE_LINUX
compiler input definition, but also defines or uses__UNIX_C__
and__unix__
macros.__unix__
is not defined on Mac but__APPLE__
is. Currently UNIX/APPLE should be treated the same (except thatMSG_NOSIGNAL
is undefined on Mac, but this has been handled). The need for aUSE_LINUX
compiler option could be eliminated by using standard OS macros (e.g.__unix__
and__APPLE__
)The text was updated successfully, but these errors were encountered: