Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 14631
b: refs/heads/master
c: af2b407
h: refs/heads/master
i:
  14629: 0ff5fc0
  14627: 1e66a88
  14623: 80d473d
v: v3
  • Loading branch information
Russell King authored and David S. Miller committed Nov 22, 2005
1 parent 5358c37 commit a9944c6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: b3a5225f31180322fd7d692fd4cf786702826b94
refs/heads/master: af2b4079ab154bd12e8c12b02db5f31b31babe63
8 changes: 7 additions & 1 deletion trunk/include/linux/smp.h
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,13 @@ void smp_prepare_boot_cpu(void);
*/
#define raw_smp_processor_id() 0
#define hard_smp_processor_id() 0
#define smp_call_function(func,info,retry,wait) ({ 0; })

static inline int smp_call_function(void (*func) (void *info), void *info,
int retry, int wait)
{
return 0;
}

#define on_each_cpu(func,info,retry,wait) ({ func(info); 0; })
static inline void smp_send_reschedule(int cpu) { }
#define num_booting_cpus() 1
Expand Down

0 comments on commit a9944c6

Please sign in to comment.