current.h 240 B

12345678910111213
  1. /*
  2. * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
  3. * Licensed under the GPL
  4. */
  5. #ifndef __UM_CURRENT_H
  6. #define __UM_CURRENT_H
  7. #include "linux/thread_info.h"
  8. #define current (current_thread_info()->task)
  9. #endif