Jimmi Holst Christensen a0a2ce92ca std: Do not allocate the result for ChildProcess.init
Instead, just return ChildProcess directly. This structure does not
require a stable address, so we can put it on the stack just fine. If
someone wants it on the heap they should do.

  const proc = try allocator.create(ChildProcess);
  proc.* = ChildProcess.init(args, allocator);
2022-04-29 22:50:34 -04:00
..
2022-04-19 19:42:15 -05:00
2022-04-27 12:20:44 -07:00
2022-04-24 23:01:06 -04:00
2022-04-28 23:41:25 -04:00
2022-04-27 12:20:44 -07:00
2022-03-08 20:38:12 +02:00
2022-04-20 17:18:06 -07:00
2022-01-07 00:06:06 -05:00
2022-04-14 10:12:45 -07:00
2022-04-27 12:20:44 -07:00
2022-04-21 14:39:41 -04:00
2022-04-21 21:53:29 +02:00
2022-04-14 10:12:45 -07:00
2022-04-20 05:31:24 -07:00
2022-04-15 17:01:01 -05:00
2022-01-07 00:06:06 -05:00
2022-01-29 13:57:14 +11:00