xref: /third_party/musl/src/process/posix_spawnattr_setpgroup.c (revision 570af302)
  • Home
  • History
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
  • only in /third_party/musl/src/process/
1#include <spawn.h>
2#include <unsupported_api.h>
3
4int posix_spawnattr_setpgroup(posix_spawnattr_t *attr, pid_t pgrp)
5{
6	UNSUPPORTED_API_VOID(LITEOS_A);
7	attr->__pgrp = pgrp;
8	return 0;
9}
10

Indexes created Thu Nov 07 10:32:03 CST 2024