https://jxself.org/git/linux-libre.git
Raw File
Tip revision: 1c388920cae6065cd9ad565f08438d22902b75de authored by Jason Self on 14 September 2013, 13:55:20 UTC
Linux-libre 3.10.12-gnu
Tip revision: 1c38892
switch_to.h
#ifndef __ALPHA_SWITCH_TO_H
#define __ALPHA_SWITCH_TO_H


struct task_struct;
extern struct task_struct *alpha_switch_to(unsigned long, struct task_struct *);

#define switch_to(P,N,L)						 \
  do {									 \
    (L) = alpha_switch_to(virt_to_phys(&task_thread_info(N)->pcb), (P)); \
    check_mmu_context();						 \
  } while (0)

#endif /* __ALPHA_SWITCH_TO_H */
back to top