cregit-Linux how code gets into the kernel

Release 4.10 arch/s390/include/asm/vtimer.h

/*
 *  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);

#endif /* _ASM_S390_TIMER_H */

Overall Contributors

PersonTokensPropCommitsCommitProp
andrew mortonandrew morton8468.29%120.00%
heiko carstensheiko carstens1411.38%120.00%
jan glauberjan glauber1310.57%240.00%
martin schwidefskymartin schwidefsky129.76%120.00%
Total123100.00%5100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.