contributed by <heathcliffYang
>
原code 其實從entry找不到detail
避免貼出完整的程式碼,你應該只要列出「關鍵」的部分。 jserv
好的!! 打完之後會改!!謝謝老師
應該一併指出原本不足之處,然後你怎麼做 code refactoring jserv
參考原程式碼概念,建立兩種結構:entry搜尋結構 與 detail 對應詳細資料的結構
entry : lastName, pNext(指向下個entry), pdetail(指向對應的detail)
detail: 其餘data, pdNext(指向下個detail), pEntry(指向對應的entry)
要先知道檔案大小->lineNum紀錄行數->最後因為呼叫檔案的考量,所以把此動作提到main()去了,並且做分流,所以orig並不會改到需要做此動作
跟hugikun999討論到,其他detail的資料應該是放在另外一個檔案,還是跟lastName同一個檔案?若是放在同一個檔案,那就會面臨到一個問題:可以同時fgets()嗎?若不能的話,就要在一輪迴圈內一起做entry跟detail的資料配置 –-> 詳見main.c之1
遇到的問題 : 在malloc detail pool時,detail_pool得到的值printf出來是nil -> 隨後接下來的就core dump ->
/* Get the file size and malloc an entry pool and a detail pool*/
char line1[MAX_LAST_NAME_SIZE];
int lineNum;
while (fgets(line1, sizeof(line1), fp)) {
lineNum++;
}
entry *entry_pool = (entry *) malloc(sizeof(entry)*lineNum);
printf("entry_pool is at %p\n", entry_pool);
/* build the entry */
entry *pHead, *e;
pHead = entry_pool;
printf("size of entry : %lu bytes\n", sizeof(entry));
e = pHead;
e->pNext = NULL;
/* build the detail */
// detail *detail_pool = (detail *) malloc(sizeof(detail) * lineNum);
// pHead->pdetail = detail_pool;
detail *d = (detail *) malloc(sizeof(detail));
pHead->pdetail = d;
printf("e->pdetail : %p\n", e->pdetail);
原因是malloc本身的大小限制
所以寫程式之前,一定要讀手冊: malloc(3) jserv
好的!! 謝謝老師QQ 以後會先看使用手冊
not yet 部分 : thread 回傳最末pointer (用pthread_join()處理)-> 串起 主要目標:把pthread parameter的傳遞看懂 & open file相關
因為對記憶體位址表示的觀念不足,在memory pool的shift處理花了很多時間
int strncasecmp(const char *s1, const char *s2, size_t n);
比較前n個字串長度memset(address, '\0', n)
將某一記憶體區段的前 n 個字元全部設定為某一字元dprintf
https://linux.die.net/man/3/dprintf 完全不是這回事,
dprintf
定義在debug.h
中,過度仰賴 Google 搜尋的結果,下場就是捨近求遠,浪費自己的時間。下次請先研究程式碼 jserv
C 標準函式庫和 POSIX 規範建議 typedef 定義過的型態標註 "_t" 名稱 jserv
pthread_setconcurrency()
int open(const char *pathname, int flags, mode_t mode);
mmap()
int pthread_getconcurrency(void);