~ubuntu-branches/ubuntu/trusty/jack-audio-connection-kit/trusty

« back to all changes in this revision

Viewing changes to config/sysdeps/cycles.h

  • Committer: Bazaar Package Importer
  • Author(s): Luca Falavigna
  • Date: 2008-12-06 11:05:15 UTC
  • mfrom: (4.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20081206110515-xa9v9pajr9jqvfvg
Tags: 0.115.6-1ubuntu1
* Merge from Debian unstable, remaining Ubuntu changes:
  - Redirect stderr in bash completion (Debian #504488).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _jack_sysdep_cycles_h_
 
2
#define _jack_sysdep_cycles_h_
 
3
 
 
4
#if defined(__i386__)
 
5
    
 
6
/* technically, i386 doesn't have a cycle counter, but
 
7
   running JACK on a real i386 seems like a ridiculuous
 
8
   target and gcc defines this for the entire x86 family
 
9
   including the [456]86 that do have the counter.
 
10
*/
 
11
 
 
12
#include <config/cpu/i386/cycles.h>
 
13
 
 
14
#elif defined(__x86_64)
 
15
 
 
16
#include <config/cpu/i486/cycles.h>
 
17
 
 
18
#elif defined(__powerpc__) || defined(__ppc__)   /* linux and OSX gcc use different tokens */
 
19
 
 
20
#include <config/cpu/powerpc/cycles.h>
 
21
 
 
22
#else
 
23
 
 
24
#include <config/cpu/generic/cycles.h>
 
25
 
 
26
#endif /* processor selection */
 
27
 
 
28
#endif /* _jack_sysdep_cycles_h_ */