ihedvall / mdflib

Implementation of the ASAM MDF data file.
https://ihedvall.github.io/mdflib/
MIT License
69 stars 29 forks source link

Update platform.cpp to fix compilation on FreeBSD #104

Closed csavorgn closed 1 month ago

csavorgn commented 1 month ago

Fix for using the correct syntax of strerror_r on FreeBSD

ihedvall commented 1 month ago

Just some comments.

Both Linux and Mac OS are built upon FreeBSD. Mac OS is very close to BSD why developing on Mac and then move it to BSD, could be a good approach.

I have some daemons that works with MDF files. I'm currently moving them so they use the workflow and utility libraries. The UtilLib give system log and listen window support. The workflow library is an event triggered task list including a real-time database. The latter is not 100% true as it's a SQLite database for static information and just shared memory for values. So if you doing something for the open source market, it could be worth looking at.

ihedvall commented 1 month ago

I might have merged this too early. Sorry about that.

csavorgn commented 1 month ago

Basically I also wrote some sort of daemon which works with MDF files using the mdflib. It could be interesting to join efforts. Making the code I wrote open source is not a problem.