반응형
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 | 29 | 30 |
Tags
- vscode
- web 개발
- postorder
- mglearn
- bccard
- CES 2O21 참여
- 대이터
- html
- Keras
- web
- web 사진
- 재귀함수
- 결합전문기관
- tensorflow
- C언어
- discrete_scatter
- web 용어
- inorder
- 데이터전문기관
- 웹 용어
- 머신러닝
- pycharm
- KNeighborsClassifier
- 자료구조
- broscoding
- cudnn
- java역사
- classification
- CES 2O21 참가
- paragraph
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