On POSIX systems the jobserver is implemented as a simple UNIX pipe. The pipe will be pre-loaded with one single-character token for each available job. To obtain an extra slot you must read a single character from the jobserver pipe; to release a slot you must write a single character back into the jobserver pipe. Note that the read side of the jobserver pipe is set to “blocking” mode.
To access the pipe you must parse the MAKEFLAGS
variable and look for the argument string --jobserver-auth=R,W
where ‘R’ and ‘W’ are non-negative integers representing file descriptors: ‘R’ is the read file descriptor and ‘W’ is the write file descriptor.
It’s important that when you release the job slot, you write back the same character you read from the pipe for that slot. Don’t assume that all tokens are the same character; different characters may have different meanings to GNU make
. The order is not important, since make
has no idea in what order jobs will complete anyway.
There are various error conditions you must consider to ensure your implementation is robust:
--jobserver-auth
option is available in MAKEFLAGS
but that the file descriptors specified are closed, this means that the calling make
process did not think that your tool was a recursive make
invocation (e.g., the command line was not prefixed with a +
character). You should notify your users of this situation. MAKEFLAGS
variable and look for the character n
. If this character is present then make
was invoked with the ‘-n’ option and your tool should stop without performing any operations. SIGINT
), etc. You may want to install signal handlers to manage this write-back.
Copyright © 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Free Software Foundation, Inc.
Licensed under the GNU Free Documentation License.
https://www.gnu.org/software/make/manual/html_node/POSIX-Jobserver.html