-1

次のコードがwhile(chars = read(fd, buff, BUFF_SZ)) > 0). 次のprintf行の は呼び出されておらず、すぐ上の行は呼び出されています。ファイル記述子は0、有効な値である を返しています。

char *infile = argv[1];
int fd,chars;

if ((fd = open(infile, O_RDONLY) < 0)) {
    perror("open()");
    exit(1);
}
printf("%s - opened (fp: %d)\n", infile, fd);
while((chars = read(fd, buff, BUFF_SZ)) > 0){
    printf("%d\n", chars);
    for(i = 0; i < chars; i++){
        c = buff[i];
        total++;
        count[c]++;
    }
}

問題の行の後に何もトリガーされておらず、この行の前ではすべてが正常に見えるため、これをデバッグする方法さえわかりません。

コンパイル可能な完全なコード:

#include <string.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdio.h>

#include <unistd.h>

#define BUFF_SZ 4096

int main(int argc, char *argv[])
{
        if(argc != 2)
                perror("Wrong number of arguments!");

        int fd;
        char *infile = argv[1];
        char buff[BUFF_SZ];
        int chars,c,c2,i;
        long long total = 0;
        long long count[256];
        char line[71];

        printf("zeroing count[]\n");
        for (c = 0; c < 256; c++) {
                count[c] = 0;
        }

        if ((fd = open(infile, O_RDONLY) < 0)) {
                perror("open()");
                exit(1);
        }
        printf("%s - opened (fp: %d)\n", infile, fd);
        while((chars = read(fd, buff, BUFF_SZ)) > 0){
                printf("%d\n", chars);
                for(i = 0; i < chars; i++){
                        c = buff[i];
                        total++;
                        count[c]++;
                }
        }
        close(fd);
        printf("%s closed\n", infile);

        if(chars < 0){
                perror("read()");
        }

        printf("outputting results\n");
        for (c = 0;c < 256; c++) {
                printf("\t%d of 256\n", c+1);
                snprintf(line, 70, "%.70lf\n",
                         ((float)count[c] / (float)total));
                for (c2 = 68; c2; c2--) {
                        if (line[c2] != '0'
                                && line[c2] != '.')
                                break;
                }
                line[++c2] = 0;
                printf("%s\n", line);
        }
        return 0;
}
4

2 に答える 2

6

問題は へのあなたの割り当てfdです。

if ((fd = open(infile, O_RDONLY) < 0)) {

次のようにする必要があります。

if ((fd = open(infile, O_RDONLY)) < 0) {

fdfd 0 は stdin であるため、infile を開く前に stdin を閉じない限り、これは発生しないはずです。

戻り値自体を割り当てるのではなく、fdの戻り値を 0 と比較した結果を割り当てていました。open

于 2012-09-10T02:02:41.027 に答える
1

括弧を再配置するだけです

if ((fd = open(argv[1], O_RDONLY)) < 0) {
于 2012-09-10T02:02:59.437 に答える