라운드 로빈(Round Robin) 스케줄링 알고리즘 라운드 로빈(RR)은 운영 체제에서 가장 간단하고 널리 사용되는 스케줄링 알고리즘 중 하나입니다. 이 알고리즘은 선점형(preemptive) 방식으로, 타임 슬라이스(time quantum)라고 불리는 고정된 시간 단위에 따라 프로세스가 CPU 시간을 공정하게 나누어 사용하도록 합니다. 작동 방식 모든 프로세스가 원형 큐(circular queue)에 추가됩니다. 스케줄러는 각 프로세스에 고정된 타임 슬라이스를 순서대로 할당합니다. 프로세스가 주어진 시간 내에 완료되지 않으면, 실행이 중단되고 큐의 뒤로 이동합니다. 모든 프로세스가 완료될 때까지 이 과정을 반복합니다. 주..
Get Public IP in C++ This code uses libcurl to retrieve the public IP address by making an HTTP request to http://api.ipify.org. #include iostream>#include string>#include curl/curl.h>size_t WriteCallback(void* contents, size_t size, size_t nmemb, std::string* userp) { userp->append((char*)contents, size * nmemb); return size * nmemb;}std::string GetPublicIP() { CURL* curl; CUR..
GetMyIPs C++ Code This code retrieves the IP addresses of the system's network interfaces on both Windows and Linux platforms using C++14. #include iostream>#include vector>#include string>// Platform-specific includes#ifdef _WIN32#include winsock2.h>#include ws2tcpip.h>#pragma comment(lib, "ws2_32.lib")#else#include ifaddrs.h>#include netinet/in.h>#include arpa/inet.h>#include sys/socket...
- Total
- Today
- Yesterday
- 암호화
- CMake
- PowerShell
- 서귀포
- C
- C#
- 블루버블
- 스쿠버다이빙
- script
- 블루버블다이브팀
- DLL
- 제주도
- OpenSource
- 스쿠버 다이빙
- 서귀포블루버블
- 티스토리챌린지
- Windows
- 외돌개
- 패턴
- 성산블루버블
- Linux
- C#.NET
- C++
- 울릉도
- 블루버블다이빙팀
- C# 고급 기술
- 윈도우
- ip
- 현포다이브
- Build
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |