-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 146198 b: refs/heads/master c: 2af15d6 h: refs/heads/master v: v3
- Loading branch information
Steven Rostedt
authored and
Steven Rostedt
committed
Jun 2, 2009
1 parent
2e2b6ec
commit 563fc9f
Showing
8 changed files
with
189 additions
and
237 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 43bd1236234cacbc18d1476a9b57e7a306efddf5 | ||
refs/heads/master: 2af15d6a44b871ad4c2a651302374cde8f335480 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#ifndef __TRACE_WORKQUEUE_H | ||
#define __TRACE_WORKQUEUE_H | ||
|
||
#include <linux/tracepoint.h> | ||
#include <linux/workqueue.h> | ||
#include <linux/sched.h> | ||
|
||
DECLARE_TRACE(workqueue_insertion, | ||
TP_PROTO(struct task_struct *wq_thread, struct work_struct *work), | ||
TP_ARGS(wq_thread, work)); | ||
|
||
DECLARE_TRACE(workqueue_execution, | ||
TP_PROTO(struct task_struct *wq_thread, struct work_struct *work), | ||
TP_ARGS(wq_thread, work)); | ||
|
||
/* Trace the creation of one workqueue thread on a cpu */ | ||
DECLARE_TRACE(workqueue_creation, | ||
TP_PROTO(struct task_struct *wq_thread, int cpu), | ||
TP_ARGS(wq_thread, cpu)); | ||
|
||
DECLARE_TRACE(workqueue_destruction, | ||
TP_PROTO(struct task_struct *wq_thread), | ||
TP_ARGS(wq_thread)); | ||
|
||
#endif /* __TRACE_WORKQUEUE_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.