mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-11-30 19:07:35 +08:00
43 lines
814 B
C++
43 lines
814 B
C++
#include "acl_cpp/stdlib/locker.hpp"
|
|
#include "acl_cpp/stream/fstream.hpp"
|
|
#include "acl_cpp/stdlib/log.hpp"
|
|
#include <stdio.h>
|
|
#include <fcntl.h>
|
|
|
|
int main(void)
|
|
{
|
|
const char* log_file = "mylog.txt";
|
|
logger_open(log_file, "test", NULL);
|
|
acl::string buf(81920);
|
|
for (int i = 0; i < 81920; i++)
|
|
buf << 'X';
|
|
logger(buf.c_str());
|
|
logger_close();
|
|
|
|
acl::fstream fp;
|
|
|
|
if (fp.open("test.lock", O_RDWR, 0600) == false) {
|
|
printf("open file error\n");
|
|
getchar();
|
|
return (1);
|
|
}
|
|
|
|
acl::locker locker;
|
|
|
|
if (locker.open(fp.file_handle()) == false) {
|
|
printf("open lock error\n");
|
|
getchar();
|
|
return (1);
|
|
}
|
|
if (locker.lock() == true) {
|
|
printf("lock ok\n");
|
|
} else {
|
|
printf("lock error\n");
|
|
}
|
|
|
|
printf("enter any key to exit\n");
|
|
getchar();
|
|
return (0);
|
|
}
|
|
|