diff options
Diffstat (limited to 'src/backend/utils')
-rw-r--r-- | src/backend/utils/probes.d | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/backend/utils/probes.d b/src/backend/utils/probes.d new file mode 100644 index 00000000000..2720de8cd93 --- /dev/null +++ b/src/backend/utils/probes.d @@ -0,0 +1,24 @@ +/* ---------- + * DTrace probes for PostgreSQL backend + * + * Copyright (c) 2006, PostgreSQL Global Development Group + * + * $PostgreSQL: pgsql/src/backend/utils/probes.d,v 1.1 2006/07/24 16:32:45 petere Exp $ + * ---------- + */ + +provider postgresql { + +probe transaction__start(int); +probe transaction__commit(int); +probe transaction__abort(int); +probe lwlock__acquire(int, int); +probe lwlock__release(int); +probe lwlock__startwait(int, int); +probe lwlock__endwait(int, int); +probe lwlock__condacquire(int, int); +probe lwlock__condacquire__fail(int, int); +probe lock__startwait(int, int); +probe lock__endwait(int, int); + +}; |