-
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: 313870 b: refs/heads/master c: 27f6b41 h: refs/heads/master v: v3
- Loading branch information
Martin Schwidefsky
committed
Jul 20, 2012
1 parent
b9378ef
commit d8e40d5
Showing
14 changed files
with
223 additions
and
473 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: 921486b92bcb1b82ab6668dcbb36d05604966351 | ||
refs/heads/master: 27f6b416626a240e1b46f646d2e0c5266f4eac95 |
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 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,33 @@ | ||
/* | ||
* Copyright IBM Corp. 2003, 2012 | ||
* Virtual CPU timer | ||
* | ||
* Author(s): Jan Glauber <jan.glauber@de.ibm.com> | ||
*/ | ||
|
||
#ifndef _ASM_S390_TIMER_H | ||
#define _ASM_S390_TIMER_H | ||
|
||
#define VTIMER_MAX_SLICE (0x7fffffffffffffffULL) | ||
|
||
struct vtimer_list { | ||
struct list_head entry; | ||
u64 expires; | ||
u64 interval; | ||
void (*function)(unsigned long); | ||
unsigned long data; | ||
}; | ||
|
||
extern void init_virt_timer(struct vtimer_list *timer); | ||
extern void add_virt_timer(struct vtimer_list *timer); | ||
extern void add_virt_timer_periodic(struct vtimer_list *timer); | ||
extern int mod_virt_timer(struct vtimer_list *timer, u64 expires); | ||
extern int mod_virt_timer_periodic(struct vtimer_list *timer, u64 expires); | ||
extern int del_virt_timer(struct vtimer_list *timer); | ||
|
||
extern void init_cpu_vtimer(void); | ||
extern void vtime_init(void); | ||
|
||
extern void vtime_stop_cpu(void); | ||
|
||
#endif /* _ASM_S390_TIMER_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.