Linux-2.6.12-rc2
[linux-flexiantxendom0-natty.git] / arch / um / sys-x86_64 / delay.c
1 /*
2  * Copyright 2003 PathScale, Inc.
3  * Copied from arch/x86_64
4  *
5  * Licensed under the GPL
6  */
7
8 #include "asm/processor.h"
9
10 void __delay(unsigned long loops)
11 {
12         unsigned long i;
13
14         for(i = 0; i < loops; i++) ;
15 }
16
17 /*
18  * Overrides for Emacs so that we follow Linus's tabbing style.
19  * Emacs will notice this stuff at the end of the file and automatically
20  * adjust the settings for this buffer only.  This must remain at the end
21  * of the file.
22  * ---------------------------------------------------------------------------
23  * Local variables:
24  * c-file-style: "linux"
25  * End:
26  */