Process.c 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /* vim: set expandtab ts=4 sw=4: */
  2. /*
  3. * You may redistribute this program and/or modify it under the terms of
  4. * the GNU General Public License as published by the Free Software Foundation,
  5. * either version 3 of the License, or (at your option) any later version.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. *
  12. * You should have received a copy of the GNU General Public License
  13. * along with this program. If not, see <https://www.gnu.org/licenses/>.
  14. */
  15. #include "rust/cjdns_sys/Rffi.h"
  16. #include "memory/Allocator.h"
  17. #include "util/events/Process.h"
  18. #include "util/Bits.h"
  19. #include "util/Identity.h"
  20. int Process_spawn(const char* binaryPath,
  21. const char* const* args,
  22. struct EventBase* eventBase,
  23. struct Allocator* alloc,
  24. Process_OnExitCallback callback)
  25. {
  26. int i;
  27. for (i = 0; args[i]; i++) ;
  28. struct EventBase_pvt* base = EventBase_privatize(eventBase);
  29. return Rffi_spawn(binaryPath, args, i, alloc, base->rffi_loop, callback);
  30. }
  31. const char* Process_getPath(struct Allocator* alloc)
  32. {
  33. const char* out;
  34. int ret = Rffi_exepath(&out, alloc);
  35. if (ret < 0) {
  36. out = 0;
  37. }
  38. return out;
  39. }