1 /** 2 Copyright: Copyright (c) 2020, Joakim Brännström. All rights reserved. 3 License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0) 4 Author: Joakim Brännström (joakim.brannstrom@gmx.com) 5 */ 6 module proc.type; 7 8 public import core.sys.posix.unistd : pid_t; 9 10 struct Pid { 11 pid_t value; 12 alias value this; 13 } 14 15 struct PidGroup { 16 pid_t value; 17 alias value this; 18 }