Revision 4a5ec7d166369bb537d31e2920651d40538511b3 authored by Johannes Schindelin on 21 January 2021, 13:09:45 UTC, committed by Junio C Hamano on 21 January 2021, 22:59:55 UTC
When `SKIP_DASHED_BUILT_INS` is specified in `config.mak`, the dashed
form of the built-ins was still generated.

By moving the `SKIP_DASHED_BUILT_INS` handling after `config.mak` was
read, this can be avoided.

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 898f807
Raw File
tr2_sid.h
#ifndef TR2_SID_H
#define TR2_SID_H

/*
 * Get our session id. Compute if necessary.
 */
const char *tr2_sid_get(void);

/*
 * Get our process depth.  A top-level git process invoked from the
 * command line will have depth=0.  A child git process will have
 * depth=1 and so on.
 */
int tr2_sid_depth(void);

void tr2_sid_release(void);

#endif /* TR2_SID_H */
back to top