[완료] 데몬과 조건변수

whxoans의 이미지

foreground 작업시에는 문제 없는 것들이
데몬화를 하니 말썽입니다.

Boss & Worker 모델의 작업제어를 하고 있는데
worker thread는 작업을 pthread_cond_wait로 기다리고
boss thread는 작업을 pthread_cond_signal로 지시합니다.

아래는 데몬화를 하는 과정입니다.

int be_daemon()
{
	switch ( fork() ) {
		case -1: return -300; // create child processor fail
		case 0: 		    
		    break;		    
		default: 		    
		    exit(1);  
	}
	if ( setsid() == -1 ) return -301;		    
	chdir("/");
        return 1;
}

최초에는 thread를 생성하는 것보다 데몬화 수행이 시점적으로 뒤에 있어서
PID가 달라서 발생하는 줄 알았습니다.
하지만 데몬화를 한 다음 쓰레드를 생성하고 PID를 확인하니 모두 같은데도 발생하네요.
위 부분만 제거하면 다시 의도한 대로 동작을 합니다.

좀 더 정확히 말씀드리면 조건변수 signal을 보내는 것과 받는 것에 문제가 아닐 수도 있지만
GDB를 디버거로 쓰는데 데몬 프로세스의 경우 trace가 어렵네요. 이부분에서도 조언을 구하고 싶습니다.

이런 경우 프로세스 그룹(pgid)등이 영향을 줄 수도 있는지요?
조언을 부탁드립니다. :)

whxoans의 이미지

결론부터 말씀드리면
condition variable을 전달하기 위해 같은 PGID를 써야하는 것 같습니다.

cond_sigal을 보내는 쓰레드(Boss thread)와 받는 쓰레드(Worker thread)의
PGID를 Boss thread 기준으로 변경을 해주니 정상 처리 되었습니다.

변경된 부분을 올리겠습니다.

int be_daemon()
{
    int fd;    
	switch ( pid = fork() ) {
		case -1: return -300; // create child processor fail
		case 0: 		    
		    break;		    
		default: 		    
		    exit(1);  
	}
 
	if ( setsid() == -1 ) return -301;
	setpgid(pid, pid); // 자신을 프로세스 그룹 리더로 변경.		    
	chdir(".");
	umask(0);
        // pid = getsid();	// sid, pid, pgid 모두 동일하다.
	return 1;
}

위의 fork() 수행 후의 pid를 담는 변수인 pid는 전역변수입니다.

그리고 worker thread는 생성된 직후 시점에 아래를 추가 했습니다.

setpgid(getpid(), pid);

아 시원해..:D

bushi의 이미지

man 3 daemon
참고하시고, 모든 작업을 이 이후에서 하면 그냥 될텐데요.

OTL

whxoans의 이미지

우선 관심가져 주셔서 감사합니다. :-)

수정한 부분을 다시 제거하고 테스트 하니 먹통이 되버리네요..T_T
근본적인 해결방법이 아니거나 제가 해결한 방법 자체가 overhead가 아닌지 의심을 해봐야겠네요.

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.