mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-23 15:01:03 +03:00
8 lines
111 B
Awk
8 lines
111 B
Awk
# @(#)commit.awk 10.1 (Sleepycat) 11/1/98
|
|
#
|
|
# Output tid of committed transactions.
|
|
|
|
/txn_regop/ {
|
|
print $5
|
|
}
|