Reduce length of C bindings comment

Signed-off-by: kim (grufwub) <grufwub@gmail.com>
This commit is contained in:
kim (grufwub) 2020-04-16 09:24:25 +01:00
parent 7b4ae11e13
commit 7a174d8f08

View File

@ -11,11 +11,11 @@ import (
)
/*
* Here begins hacky fun-time. GoLang's built-in syscall.{Setuid,Setgid}() methods don't
* work as expected (all I ever run into is 'operation not supported'). Which from reading
* seems to be a result of Linux not always performing setuid/setgid constistent with the
* Unix expected result. Then mix that with GoLang's goroutines acting like threads but
* not quite the same... I can see why they're not fully supported.
* GoLang's built-in syscall.{Setuid,Setgid}() methods don't work as expected (all I ever
* run into is 'operation not supported'). Which from reading seems to be a result of Linux
* not always performing setuid/setgid constistent with the Unix expected result. Then mix
* that with GoLang's goroutines acting like threads but not quite the same... I can see
* why they're not fully supported.
*
* Instead we're going to take C-bindings and call them directly ourselves, BEFORE spawning
* any goroutines to prevent fuckery.