BabbleSim / native_simulator

Native simulator
22 stars 1 forks source link

Host trampolines: constify 'buffer' argument in nsi_host_write() #2

Closed mniestroj closed 7 months ago

mniestroj commented 7 months ago

buffer argument is read only, so it can be const. This makes it compatible with POSIX specification of write(3) syscall.

aescolar commented 7 months ago

@mniestroj Thank you