반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- paragraph
- web 개발
- Keras
- web
- cudnn
- 웹 용어
- C언어
- html
- KNeighborsClassifier
- 대이터
- tensorflow
- 결합전문기관
- CES 2O21 참여
- pycharm
- inorder
- classification
- vscode
- 자료구조
- web 사진
- 재귀함수
- postorder
- web 용어
- 머신러닝
- mglearn
- broscoding
- bccard
- 데이터전문기관
- CES 2O21 참가
- java역사
- discrete_scatter
Archives
- Today
- Total
bro's coding
OS.systemcall.exec..p 본문
반응형
SYNOPSIS
#include <unistd.h>
int execlp(const char *file, const char *arg0, ... /*, (char *)0 */);
int execvp(const char *file, char *const argv[]);
Using execlp() The following example searches for the location of the ls command among the directories specified by the PATH environment variable. #include <unistd.h> int ret; ... ret = execlp ("ls", "ls", "-l", (char *)0);
반응형
'[IT] > [Operating system]' 카테고리의 다른 글
OS.interrupt 처리 방식(polling, vectored interrupt system) (0) | 2020.09.04 |
---|
Comments