代码搜索:testlog
找到约 126 项符合「testlog」的源代码
代码结果 126
www.eeworm.com/read/430520/1921142
makefile
CPPFLAGS+=-I../../ -g -D_REENTRANT -DACE_HAS_AIO_CALLS -D_GNU_SOURCE -DACE_NO_INLINE -DACE_HAS_LINUX_NPTL -I./
LDFLAGS+=-L../..I -lpthread -lrt
all: testlog1
testlog1: testlog1.o
g++ $(LDFLAGS) -
www.eeworm.com/read/239029/4606330
h resource.h
//{{NO_DEPENDENCIES}}
// Microsoft Developer Studio generated include file.
// Used by TestServer.rc
//
#define IDS_PROJNAME 100
#define IDR_TESTLOG 102
www.eeworm.com/read/200242/15436525
cpp testlogdlg.cpp
// TestLogDlg.cpp : 实现文件
//
#include "stdafx.h"
#include "TestLog.h"
#include "TestLogDlg.h"
#include "logger.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// CTestLogDlg 对话框
CTestLo
www.eeworm.com/read/192609/5151929
vb form1.vb
Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
My.Application.Log.WriteEntry("TestLog")
End Sub
End Cla
www.eeworm.com/read/173430/9658723
c syslog_test.c
#include
int do_log(char* msg, int delay)
{
openlog("testlog", LOG_PID, LOG_DAEMON);
while(1) {
syslog(LOG_ERR, "%s: testing one, two, three\n", msg);
sleep(delay);
}
close