Procházet zdrojové kódy

osx/clock_gettime_stub.h/c: Removed. Replaced with OS-X specific code in cmTime.c

master
kevin před 11 roky
rodič
revize
27ab77f2c7
2 změnil soubory, kde provedl 0 přidání a 158 odebrání
  1. 0
    144
      osx/clock_gettime_stub.c
  2. 0
    14
      osx/clock_gettime_stub.h

+ 0
- 144
osx/clock_gettime_stub.c Zobrazit soubor

@@ -1,144 +0,0 @@
1
-/*
2
- * Copyright (c), MM Weiss
3
- * All rights reserved.
4
- * 
5
- * Redistribution and use in source and binary forms, with or without modification, 
6
- * are permitted provided that the following conditions are met:
7
- * 
8
- *     1. Redistributions of source code must retain the above copyright notice, 
9
- *     this list of conditions and the following disclaimer.
10
- *     
11
- *     2. Redistributions in binary form must reproduce the above copyright notice, 
12
- *     this list of conditions and the following disclaimer in the documentation 
13
- *     and/or other materials provided with the distribution.
14
- *     
15
- *     3. Neither the name of the MM Weiss nor the names of its contributors 
16
- *     may be used to endorse or promote products derived from this software without 
17
- *     specific prior written permission.
18
- * 
19
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY 
20
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 
21
- * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT 
22
- * SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
23
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT 
24
- * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 
25
- * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR 
26
- * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, 
27
- * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
- */
29
-
30
-/*
31
- *  clock_gettime_stub.c
32
- *  gcc -Wall -c clock_gettime_stub.c
33
- *  posix realtime functions; MacOS user space glue
34
- */
35
- 
36
-/*  @comment
37
- *  other possible implementation using intel builtin rdtsc
38
- *  rdtsc-workaround: http://www.mcs.anl.gov/~kazutomo/rdtsc.html
39
- *  
40
- *  we could get the ticks by doing this
41
- * 
42
- *  __asm __volatile("mov %%ebx, %%esi\n\t"
43
- *  		"cpuid\n\t"
44
- *  		"xchg %%esi, %%ebx\n\t"
45
- *  		"rdtsc"
46
- *  		: "=a" (a),
47
- *  		  "=d" (d)
48
- * 	);
49
- 
50
- *  we could even replace our tricky sched_yield call by assembly code to get a better accurency,
51
- *  anyway the following C stub will satisfy 99% of apps using posix clock_gettime call, 
52
- *  moreover, the setter version (clock_settime) could be easly written using mach primitives:
53
- *  http://www.opensource.apple.com/source/xnu/xnu-${VERSION}/osfmk/man/ (clock_[set|get]_time)
54
- *  
55
- *  hackers don't be crackers, don't you use a flush toilet?
56
- * 
57
- *
58
- *  @see draft: ./posix-realtime-stub/posix-realtime-stub.c
59
- *
60
- */
61
- 
62
-
63
-#ifdef OS_OSX
64
-
65
-#pragma weak clock_gettime
66
-
67
-#include <sys/time.h>
68
-#include <sys/resource.h>
69
-#include <mach/mach.h>
70
-#include <mach/clock.h>
71
-#include <mach/mach_time.h>
72
-#include <errno.h>
73
-#include <unistd.h>
74
-#include <sched.h>
75
-#include "clock_gettime_stub.h"
76
-
77
-/*
78
-typedef enum {
79
-	CLOCK_REALTIME,
80
-	CLOCK_MONOTONIC,
81
-	CLOCK_PROCESS_CPUTIME_ID,
82
-	CLOCK_THREAD_CPUTIME_ID
83
-} clockid_t;
84
-*/
85
-
86
-static mach_timebase_info_data_t __clock_gettime_inf;
87
-
88
-int clock_gettime(clockid_t clk_id, struct timespec *tp) {
89
-	kern_return_t   ret;
90
-	clock_serv_t    clk;
91
-	clock_id_t clk_serv_id;
92
-	mach_timespec_t tm;
93
-	
94
-	uint64_t start, end, delta, nano;
95
-	
96
-	//task_basic_info_data_t tinfo;
97
-	//task_thread_times_info_data_t ttinfo;
98
-	//mach_msg_type_number_t tflag;
99
-	
100
-	int retval = -1;
101
-	switch (clk_id) {
102
-		case CLOCK_REALTIME:
103
-		case CLOCK_MONOTONIC:
104
-			clk_serv_id = clk_id == CLOCK_REALTIME ? CALENDAR_CLOCK : SYSTEM_CLOCK;
105
-			if (KERN_SUCCESS == (ret = host_get_clock_service(mach_host_self(), clk_serv_id, &clk))) {
106
-				if (KERN_SUCCESS == (ret = clock_get_time(clk, &tm))) {
107
-					tp->tv_sec  = tm.tv_sec;
108
-					tp->tv_nsec = tm.tv_nsec;
109
-					retval = 0;
110
-				}
111
-			}
112
-			if (KERN_SUCCESS != ret) {
113
-				errno = EINVAL;
114
-				retval = -1;
115
-			}
116
-		break;
117
-		case CLOCK_PROCESS_CPUTIME_ID:
118
-		case CLOCK_THREAD_CPUTIME_ID:
119
-			start = mach_absolute_time();
120
-			if (clk_id == CLOCK_PROCESS_CPUTIME_ID) {
121
-				getpid();
122
-			} else {
123
-				sched_yield();
124
-			}
125
-			end = mach_absolute_time();
126
-			delta = end - start;	
127
-			if (0 == __clock_gettime_inf.denom) {
128
-				mach_timebase_info(&__clock_gettime_inf);
129
-			}
130
-			nano = delta * __clock_gettime_inf.numer / __clock_gettime_inf.denom;
131
-			tp->tv_sec = nano * 1e-9;  
132
-			tp->tv_nsec = nano - (tp->tv_sec * 1e9);
133
-			retval = 0;
134
-		break;
135
-		default:
136
-			errno = EINVAL;
137
-			retval = -1;
138
-	}
139
-	return retval;
140
-}
141
-
142
-#endif // __APPLE__
143
-
144
-/* EOF */

+ 0
- 14
osx/clock_gettime_stub.h Zobrazit soubor

@@ -1,14 +0,0 @@
1
-
2
-#ifdef OS_OSX
3
-
4
-typedef enum {
5
-	CLOCK_REALTIME,
6
-	CLOCK_MONOTONIC,
7
-	CLOCK_PROCESS_CPUTIME_ID,
8
-	CLOCK_THREAD_CPUTIME_ID
9
-} clockid_t;
10
-
11
-
12
-int clock_gettime(clockid_t clk_id, struct timespec *tp);
13
-
14
-#endif

Načítá se…
Zrušit
Uložit