반응형
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
- web
- Keras
- 자료구조
- 머신러닝
- 결합전문기관
- KNeighborsClassifier
- CES 2O21 참여
- classification
- 재귀함수
- 대이터
- broscoding
- discrete_scatter
- cudnn
- tensorflow
- 데이터전문기관
- inorder
- mglearn
- CES 2O21 참가
- postorder
- bccard
- java역사
- web 용어
- 웹 용어
- html
- paragraph
- web 사진
- pycharm
- web 개발
- vscode
- C언어
Archives
- Today
- Total
목록[IT]/[Operating system] (2)
bro's coding
OS.systemcall.exec..p
SYNOPSIS #include 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 int ret; ... ret = execlp ("ls", "ls", "-l", (char *)0);
[IT]/[Operating system]
2020. 10. 14. 04:00
OS.interrupt 처리 방식(polling, vectored interrupt system)
Polling 이란, CPU가 interrupt가 발생 했는지의 여부만 알게되어, 어디서 interrupt가 발생했는지 하나씩 확인하고 처리하는 방식이다. vectored interrupt system 이란, 각각의 interrupt를 미리 만들어 놓고 interrupt가 왔을 때 그 interrupt에 맞는 미리 만들어 놓은 interrupt를 찾아 처리하는 방식이다.
[IT]/[Operating system]
2020. 9. 4. 21:52