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 1031227
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T13:53:40+00:00 2026-05-16T13:53:40+00:00

for the embedded MIPS-based platform I’m implementing a small program to poll GPIO, i.e.

  • 0

for the embedded MIPS-based platform I’m implementing a small program to poll GPIO, i.e. I’m using chip vendor’s user level GPIO library with basic functionality (open /dev/gpio, read, write pin etc.). The design is straightforward:

int gpio_fd;
fd_set rfds;

gpio_fd = gpio_open(...);

while (1) {
    FD_ZERO(&rfds);
    FD_SET(gpio_fd, &rfds);

    if (select(gpio_fd + 1, &rfds, NULL, NULL, NULL) > 0) {
        if (FD_ISSET(gpio_fd, &rfds)) {
            /* read pins and similar */
        }
    }
}

But I’m facing a serious problem – this application when ran with ‘&’ at the end, i.e. put it in background, consumes 99% CPU, this is obviously because of tight loop, but I observed the similar approach in many networking code and it worked fine.

Am I missing something, can it be a defect of the gpio library ?

Actually, just a single “while(1) ; ” does the same effect. Can it be the “natural” behavior of the kernel?

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-05-16T13:53:41+00:00Added an answer on May 16, 2026 at 1:53 pm

    The select call should block until the file descriptor is readable.

    What may be happening is that the device driver does not support the select call, and so it exits immediately rather than blocking.

    Another possibility is that the call to gpio_open does not actually give you a real Unix file descriptor. If that were open("/dev/gpio", O_RDWR) or something like that I’d have a lot more faith in it.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have cross compiled QT5 for MIPS based embedded platform. There is no pointer
I need to write an user menu for an embedded device (mips linux). The
I'm working on embedded platform (Broadcom's bcm5358u processor with MIPS core), where I need
We are working on an embedded system using a MIPS(broadcom) core. Now i want
I am using a MIPS CPU (PIC32) in an embedded project, but I am
I am on an embedded platform (mipsel architecture, Linux 2.6 kernel) where I need
Using Embedded Jetty I am trying to get a very simple servlet to forward
Our embedded system is built on a hw/sw platform made by enea. After the
Hi i'm using Embedded Mono with NaCl. Everything is working so far but idk
I embedded flash to my site using this: print swf('myflash.swf'); into my page.tpl file

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.