64비트 머신과 32비트 머신에서 void * 와 int 의 차이는?

hany93의 이미지

아래의 코드에서 처럼 void * 로 받은 인자를 int 로 타입캐스팅 했더니 저~~ 아래의 워닝이 나오는데요.. 워닝 안내려면.. 어떻게 하면 좋을까요?

void *ThreadMain(void *arg)
{
    struct sockaddr_in addr;
#ifdef _AIX
    socklen_t addrlen;
#else
    int addrlen;
#endif
    int connfd;
    int pid, tid;
    char IpAddr[20];

    pthread_detach(pthread_self());

    pid = down.pid;
    tid = pthread_self();

    connfd = (int)arg;[/b]

이렇게 되어있는 코드를 컴팔했더니 (HP 입니당.. 컴팔옵션은 +DA2.0W)

cc: "down_main.c", line 312: warning 727: Cast truncates pointer into 32 bit integer.

이런 워닝이...

winner의 이미지

우선 왜 그렇게 사용해야 하는지 이유를 설명해 주시는 것이 좋겠습니다.

Compiler 가 지원한다면 unsigned long long int 를 사용하시면
그런 warning 은 안 날 것으로 보입니다.
64bit machine 이므로 pointer 가 32bit 이상을 차지하나 보죠?

만약 화면에 출력하기 위한 것이라면 %p 를 사용할 수 있습니다.
이것 역시 implementation defined 입니다만.

최종호의 이미지

64bit 환경은 일반적으로 LP64 모델입니다.
long형과 pointer 가 64비트입니다.
int는 여전히 32비트이고요.
(참고로 32bit 환경은 IPL32라고 합니다. int, pointer, long이 32비트)

따라서 64bit를 32bit로 캐스팅했으니 정보유실의 가능성이 있을테고,
이에 대한 경고을 낸 것으로 보입니다.
사용자가 강제적으로 형변환을 수행해서 경고를 안 내는 것이
더 적절할 것 같은데, 아마 해당 경고를 끌 수 있는 옵션이 있지 않을까요?

hany93의 이미지

64비트 컴팔옵션을 끄면 잘 됩니다.
+DA2.0W 삭제..

그리고 조언 주신대로 int 를 long 으로 바꿔도 되고요

조언 감사합니다. :D

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.