第一章:緒論?
成都創(chuàng)新互聯(lián)公司服務(wù)項(xiàng)目包括渾江網(wǎng)站建設(shè)、渾江網(wǎng)站制作、渾江網(wǎng)頁制作以及渾江網(wǎng)絡(luò)營銷策劃等。多年來,我們專注于互聯(lián)網(wǎng)行業(yè),利用自身積累的技術(shù)優(yōu)勢、行業(yè)經(jīng)驗(yàn)、深度合作伙伴關(guān)系等,向廣大中小型企業(yè)、政府機(jī)構(gòu)等提供互聯(lián)網(wǎng)行業(yè)的解決方案,渾江網(wǎng)站推廣取得了明顯的社會效益與經(jīng)濟(jì)效益。目前,我們服務(wù)的客戶以成都為中心已經(jīng)輻射到渾江省份的部分城市,未來相信會繼續(xù)擴(kuò)大服務(wù)區(qū)域并繼續(xù)獲得客戶的支持與信任!
內(nèi)核版本號格式:x.y.zz-www/x為主版本號,y為次版本號,zz為次次版本號,www為發(fā)行號/次版本號改變說明內(nèi)核有重大變革,其偶數(shù)為穩(wěn)定版本,奇數(shù)為尚在開發(fā)中的版本
第二章:基礎(chǔ)?
文件種類:-:txt,二進(jìn)制/d:目錄/l:鏈接文件(link)/b:區(qū)塊設(shè)備文件/c:字符設(shè)備文件/p:管道
目錄結(jié)構(gòu):bin:可執(zhí)行/boot:開機(jī)引導(dǎo)/dev:設(shè)備文件/etc:系統(tǒng)配置文件/lib:庫文件/mnt:設(shè)備掛載點(diǎn)/var:系統(tǒng)日志/
命令:rmdir:刪除空目錄/find [path] [expression]/touch命令還可以修改指定文件的最近一次訪問時(shí)間/tar -czvf usr.tar.gz path/tar –zxvf usr.tar.gz/tar –cjvf usr.tar.bz2 path/tar –jxvf usr.tar.bz2
gcc:預(yù)處理:-g/I在頭文件搜索路徑中添加目錄,L在庫文件搜索路徑中
gdb:設(shè)置斷點(diǎn):b/查看斷點(diǎn)信息:info
Makefile:make –f other_makefile/:第一個(gè)依賴文件的名稱/@:目標(biāo)文件的完整名稱/^:所有不重復(fù)的依賴文件/+:所有依賴文件(可能重復(fù))
第三章:文件IO
read:read(fd, temp, size); /讀fd中長度為size的值到temp/返回0表示file為NULL
write:write(fd, buf, buf_size); /寫長度為buf_size的buf內(nèi)容到fd中
lseek:lseek(fd, offset, SEEK_SET); /從文件開頭向后增加offset個(gè)位移量
unlink:從文件系統(tǒng)中刪除一個(gè)名字
open1:int open(const char * pathname, int flags, mode_t mode);/flags為讀寫方式/mode為權(quán)限設(shè)置/O_EXCL:測試文件是否存在/O_TRUNC:若存在同名文件則刪除之并新建
open2:注意O_NONBLOCK
mmap.1:void *mmap(void *start, size_t length, int prot, int flags, int fd, off_t offsize);
mmap.2:mmap(start_addr, flength, PROT_READ|PROT_WRITE, MAP_SHARED, fd, 0);
fcntl:上鎖/int fcntl(int fd, int cmd, struct flock * lock);/對誰;做什么;設(shè)置所做內(nèi)容
select:fd_max+1,回傳讀狀況,回傳寫狀況,回傳異常,select等待的時(shí)間/NULL為永遠(yuǎn)等待/0為從不等待/凡需某狀況則用之,反則(fd_set *)NULL之
FD_*那幾個(gè)函數(shù)……
一般出錯則返回-1
第四章:文件與目錄
硬鏈接與符號鏈接?
chdir改變目錄
0:in/1:out/2:err
第五章:內(nèi)存管理
可執(zhí)行文件存儲時(shí):代碼區(qū)、數(shù)據(jù)區(qū)和未初始化區(qū)
棧:by編譯器,向低址擴(kuò)展,連續(xù),效率高/堆:by程序員
/etc/syslog.conf,系統(tǒng)log記錄文件/優(yōu)先級為-20時(shí)最高
第六章:進(jìn)程和信號
程序代碼、數(shù)據(jù)、變量、文件描述符和環(huán)境/init的pid為1
execl族:int execl(const char * path, const char * arg, ....);/path即可執(zhí)行文件的路徑,一般為./最后一個(gè)參數(shù)以NULL結(jié)束
waitpid:waitpid(pid_t pid,int * status,int options);/option:一般用WNOHANG,沒有已經(jīng)結(jié)束的子進(jìn)程則馬上返回,不等待
kill:int kill(pid_t pid,int sig);/發(fā)送信號sig給pid
void (*signal(int signum, void(* handler)(int)))(int);/第一個(gè)參數(shù)被滿足時(shí),執(zhí)行handler/第一個(gè)參數(shù)常用:SIG_IGN:忽略信號/SIG_DFL:恢復(fù)默認(rèn)信號
第七章:線程
sem_init(sem_t *sem, int pshared, unsigned int value)/pshared為0/value即初始值
第八章:管道
1:write/0:read
第九章:信號量、共享內(nèi)存和消息隊(duì)列
臨界資源:操作系統(tǒng)中只允許一個(gè)進(jìn)程訪問的資源/臨界區(qū):訪問臨界資源的那段代碼
信號量:建立聯(lián)系(semget),然后初始化,PV操作,最后destroy
共享內(nèi)存沒有提供同步機(jī)制
第十章:套接字
UDP:無連接協(xié)議,無主客端的區(qū)分/實(shí)時(shí)性
TCP:字節(jié)流/數(shù)據(jù)可靠性/網(wǎng)絡(luò)可靠性
數(shù)據(jù)報(bào):SOCK_STREAM/SOCK_DGRAM
其它
管道一章的both_pipe即父子進(jìn)程間的全雙工管道通訊
關(guān)系到信號和互斥的服務(wù)器-客戶端程序
線程一章的class的multi_thread文件夾下的thread8.c
int main(void)
{
int data_processed;
int file_pipes_1[2];
int file_pipes_2[2];
char buffer[BUFSIZ + 1];
const char some_data[] = "123";
const char ch2p[] = "this is the string from child to the parent!";
const char p2ch[] = "this is the string from parent to the child!";
pid_t fork_result;
memset(buffer,'\0',sizeof(buffer));
if(pipe(file_pipes_1) == 0){
if(pipe(file_pipes_2) == 0){
fork_result = fork();
switch(fork_result){
case -1:
perror("fork error");
exit(EXIT_FAILURE);
case 0://child
close(file_pipes_1[1]);
close(file_pipes_2[0]);
printf("in the child!\n");
read(file_pipes_1[0],buffer, BUFSIZ);
printf("in the child, read_result is \"%s\"\n",buffer);
write(file_pipes_2[1],ch2p, sizeof(ch2p));
printf("in the child, write_result is \"%s\"\n",ch2p);
exit(EXIT_SUCCESS);
default://parent
close(file_pipes_1[0]);
close(file_pipes_2[1]);
printf("in the parent!\n");
write(file_pipes_1[1], p2ch, sizeof(p2ch));
printf("in the parent, write_result is \"%s\"\n",p2ch);
read(file_pipes_2[0],buffer, BUFSIZ);
printf("in the parent, read_result is \"%s\"\n",buffer);
exit(EXIT_SUCCESS);
}
}
}
}
#ifndef DBG
#define DBG
#endif
#undef DBG
#ifdef DBG
#define PRINTF(fmt, args...) printf("file-%s line-%d: " \
fmt, __FILE__, __LINE__, ##args)
#else
#define PRINTF(fmt, args...) do{}while(0);
#endif
int main(void)
{
PRINTF("%s\n", "hello!");
fprintf(stdout, "hello hust!\n");
return 0;
}
#define N 5
#define MAX 5
int nput = 0;
char buf[MAX][50];
char *buffer = "abcdefghijklmnopqrstuvwxyz0123456789";
char buf_r[100];
sem_t mutex,full,avail;
void *productor(void *arg);
void *consumer(void *arg);
int i = 0;
int main(int argc, char **argv)
{
int cnt = -1;
int ret;
int nput = 0;
pthread_t id_produce[10];
pthread_t id_consume;
ret = sem_init(mutex, 0, 1);
ret = sem_init(avail, 0, N);
ret = sem_init(full, 0, 0);
for(cnt = 0; cnt 6; cnt ++ ){
//pthread_create(id_produce[cnt], NULL, (void *)productor, cnt);
pthread_create(id_produce[cnt], NULL, (void *)productor, (void *)cnt);
}
pthread_create(id_consume, NULL, (void *)consumer, NULL);
for(cnt = 0; cnt 6; cnt ++){
pthread_join(id_produce[cnt], NULL);
}
pthread_join(id_consume,NULL);
sem_destroy(mutex);
sem_destroy(avail);
sem_destroy(full);
exit(EXIT_SUCCESS);
}
void *productor(void *arg)
{
while(1){
sem_wait(avail);
sem_wait(mutex);
if(nput = MAX * 3){
sem_post(avail);
//sem_post(full);
sem_post(mutex);
return NULL;
}
sscanf(buffer + nput, "%s", buf[nput % MAX]);
//printf("write[%d] \"%s\" to the buffer[%d]\n", (*(int*)arg), buf[nput % MAX],nput % MAX);
printf("write[%d] \"%s\" to the buffer[%d]\n", (int)arg, buf[nput % MAX],nput % MAX);
nput ++;
printf("nput = %d\n", nput);
sem_post(mutex);
sem_post(full);
}
return NULL;
}
void *consumer(void *arg)
{
int nolock = 0;
int ret, nread, i;
for(i = 0; i MAX * 3; i++)
{
sem_wait(full);
sem_wait(mutex);
memset(buf_r, 0, sizeof(buf_r));
strncpy(buf_r, buf[i % MAX], sizeof(buf[i % MAX]));
printf("read \"%s\" from the buffer[%d]\n\n",buf_r, i % MAX);
sem_post(mutex);
sem_post(avail);
//sleep(1);
}
return NULL;
}
你可以簡單理解為有兩段代碼,
一段是你自己的
還有一段是在math.h中,
現(xiàn)在你想調(diào)用math函數(shù),
但這個(gè)函數(shù)不在你這段代碼中,
而是在math.h中,
這時(shí)你就需要加一條#include指令,把頭文件“math.h”包含到你的代碼中來,
不然你沒法使用math函數(shù),
好吧
,
確實(shí)很繞~~
您好,很高興回答您的問題。
在c語言中,專門建立有一組需要經(jīng)常使用、但是編寫起來不太簡單的函數(shù),系統(tǒng)把這些功能載入到軟件內(nèi)容。普通用戶所需要使用時(shí),只需要按照規(guī)定輸入正確的調(diào)用語句,即可打開并運(yùn)行謝謝文件。打開的格式為#include對應(yīng)文件名,如打開輸入輸出函數(shù)為#includestdio. h。