Open Issues Need Help
View All on GitHubAI Summary: The task is to modify the Erlang/OTP source code (specifically `erlexec.c`) to ensure that the `epmd` process is created with the `CREATE_BREAKAWAY_FROM_JOB` flag. This change will prevent `epmd.exe` from being assigned to the same job object as the main Erlang process, allowing for proper job object cleanup and preventing issues when using job objects to manage process lifecycles. The fix involves modifying the process creation in the specified file to include the flag.
AI Summary: The task is to enhance Erlang's tracing mechanism to support variable-arity function matching in match specs. Currently, match specs require specifying all arguments; the improvement would allow specifying a prefix of arguments, using '_' to represent any remaining arguments, enabling more concise tracing of functions with multiple arities.