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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T19:22:15+00:00 2026-05-30T19:22:15+00:00

i want to watch a file fd is readable when not eof in linux

  • 0

i want to watch a file fd is readable when not eof in linux c.
now i have to loop until !eof,i think it’s waste of cpu time.

static int rs_eof_read_binlog(rs_master_info_t *m, void *buf, 
    size_t size) {

FILE *fp;
size_t n;

fp = m->bfp;
for( ;; ) {
    n = fread(buf, size, 1, fp);
    if(n * size < size) {
        if(ferror(fp) != 0) {
            return RS_ERR;
        }

        if(feof(fp) != 0) {
            fseek(fp, -n * size, SEEK_CUR);
            sleep(1);
        }
    }
    else {
        break;
    }
}

clearerr(fp);
return RS_OK;

}

i checkd the select,when a file eof ,select returns.

Those listed in readfds will be watched to see if characters become avail‐
   able  for reading (more precisely, to see if a read will not block; in particular, a file descriptor is also ready on end-of-file)

fixed!!!!
sample code use inotify

int main(int argc, char *argv[])

{

char p, buf[1024];
int fd = open("/home/terry/1.txt", O_RDONLY, "00666");
struct inotify_event * event;
size_t len;

read(fd, &p, 1);

int ifd = inotify_init();
int wd = inotify_add_watch(ifd, "/home/terry/1.txt", IN_MODIFY);
while(len = read(ifd, buf, 1024)) {
    event = (struct inotify_event *) buf;
    if(event->mask & IN_MODIFY) {
        printf("changed\n");
        break;
    }
}



return 0;

}

  • 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-30T19:22:16+00:00Added an answer on May 30, 2026 at 7:22 pm

    You can try the inotify mechanism.
    Use inotify_add_watch to listen to the IN_MODIFY event on the file you want to watch.

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

Sidebar

Related Questions

I have a string in a watch window in VS2008 and want to see
I want to watch a folder tree on a network server for changes. The
I want to watch all the HTTP requests going out of a certain application
In my iPhone OS application I want (need) to watch for changes in the
I want this url http://www.youtube.com/watch?v=dgNgODPIO0w&feature=rec-HM-fresh+div to be transformed to: http://www.youtube.com/v/dgNgODPIO0w with php.
I want to setup a statistics monitoring platform to watch a specific service, but
I want to programattically pull a movie file down into a NSData object and
I am trying to watch a directory, and is looking for file modifications. Thinking
These fine folks are my users: http://www.youtube.com/watch?v=o4MwTvtyrUQ If you don't want to enjoy the
I want to monitor a folder. Every time a notification pops up i want

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.