Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8063447
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T11:02:21+00:00 2026-06-05T11:02:21+00:00

Where can I find the code for wait_event_interruptible in Kernel tree. What I can

  • 0

Where can I find the code for wait_event_interruptible in Kernel tree.
What I can find is wait_event_interruptible is defined as __wait_event_interruptible in . But I am unable to find the code .
Please help me out.

Consider a process which has gone to sleep by wait_event_interruptible. Suppose if there is an interrupt now and the interrupt handler wakes(wake_up_event_interruptible) up the sleeping process. For the process to wake up successfully should the condition given in wait_event_interruptible be true ?

Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T11:02:22+00:00Added an answer on June 5, 2026 at 11:02 am

    It’s in include/linux/wait.h:

    #define wait_event_interruptible(wq, condition)               \
    ({                                                            \
        int __ret = 0;                                            \
        if (!(condition))                                         \
            __wait_event_interruptible(wq, condition, __ret);     \
        __ret;                                                    \
    })
    

    …

    #define __wait_event_interruptible(wq, condition, ret)        \
    do {                                                          \
        DEFINE_WAIT(__wait);                                      \
                                                                  \
        for (;;) {                                                \
            prepare_to_wait(&wq, &__wait, TASK_INTERRUPTIBLE);    \
            if (condition)                                        \
                break;                                            \
            if (!signal_pending(current)) {                       \
                schedule();                                       \
                continue;                                         \
            }                                                     \
            ret = -ERESTARTSYS;                                   \
            break;                                                \
        }                                                         \
        finish_wait(&wq, &__wait);                                \
    } while (0)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have android.permission.READ_OWNER_DATA but I can't find any reliable code that would explain how
I have searched but can't find why this simple code will fail in Drools
This is probably really stupid but i can't find the problem with my code.
I want to create and then destroy buttons, all with code, but can't find
Does anyone knows where I can find tutorials and code samples, basic and advanced,
I'm trying to use PyLucene, and I can't find any code examples that actually
Where can I find the source code for Unix environment's cd command? I want
Where can I find examples of code, written in Unified Parallel C? I also
Where can I find an editor/IDE with the ability to display a JavaScript code
I can't find the problem. Why is this code making many copies of the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.