-
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.
- Loading branch information
Arjan van de Ven
authored and
Linus Torvalds
committed
Oct 1, 2006
1 parent
2ad3e4a
commit 7814dee
Showing
6 changed files
with
350 additions
and
6 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: 130c6b98984a058068ea595c465fba2beb48b9ef | ||
refs/heads/master: 5c87579e65ee4f419b2369407f82326d38b5d2d8 |
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 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 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 @@ | ||
/* | ||
* latency.h: Explicit system-wide latency-expectation infrastructure | ||
* | ||
* (C) Copyright 2006 Intel Corporation | ||
* Author: Arjan van de Ven <arjan@linux.intel.com> | ||
* | ||
*/ | ||
|
||
#ifndef _INCLUDE_GUARD_LATENCY_H_ | ||
#define _INCLUDE_GUARD_LATENCY_H_ | ||
|
||
#include <linux/notifier.h> | ||
|
||
void set_acceptable_latency(char *identifier, int usecs); | ||
void modify_acceptable_latency(char *identifier, int usecs); | ||
void remove_acceptable_latency(char *identifier); | ||
void synchronize_acceptable_latency(void); | ||
int system_latency_constraint(void); | ||
|
||
int register_latency_notifier(struct notifier_block * nb); | ||
int unregister_latency_notifier(struct notifier_block * nb); | ||
|
||
#define INFINITE_LATENCY 1000000 | ||
|
||
#endif |
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.