소설 같은 리눅스 비밀을 풀어주셈..ㅜㅜ

iimec2의 이미지

1.int offset =1;
Unsign long result = offset & ~31UL; <- 전 해석이 안되네용..ㅜㅜ

2. . usb_address0_sem은 멀까?

리눅스에서 함수 인자에 저런 것이 있는데요..디파인도 아니고..ctag로 찾아봐도 안나오네용. ㅜㅜ

3. static int ascii2utf(char *scii, __u8 *utf, int utfmax)
{
Int retval;
For(retval =0; *ascii && utfmax > 1; utfmax -=2, retval +=2)
{ *utf++ = * ascii ++ & 0x7f;
*utf++=0;
}
Return retval;
}
여기서 ascii포인터는 캐릭터형 배열의 주소값을 받는다. __u8은 unsigned char 형이다.
머하는 거여요? 해석이 안되요,...나 프로그래머 맞어?ㅠㅜ

익명 사용자의 이미지

iimec2 wrote:
1.int offset =1;
Unsign long result = offset & ~31UL; <- 전 해석이 안되네용..ㅜㅜ

2. . usb_address0_sem은 멀까?

리눅스에서 함수 인자에 저런 것이 있는데요..디파인도 아니고..ctag로 찾아봐도 안나오네용. ㅜㅜ

3. static int ascii2utf(char *scii, __u8 *utf, int utfmax)
{
Int retval;
For(retval =0; *ascii && utfmax > 1; utfmax -=2, retval +=2)
{ *utf++ = * ascii ++ & 0x7f;
*utf++=0;
}
Return retval;
}
여기서 ascii포인터는 캐릭터형 배열의 주소값을 받는다. __u8은 unsigned char 형이다.
머하는 거여요? 해석이 안되요,...나 프로그래머 맞어?ㅠㅜ

1번은.. 출력해보면 알 수 있지 않나요? 왠만한 C 입문서에는 비트연산에 대한 내용이 꼭 있을텐데.. 찾아보기 귀찮으시면 찍어보는게 간결하죠.

3번은.. 아스키 문자열을 유니코드 문자열로 바꾸는것 같아보이네요. 함수 시그너쳐로 유추해볼때.

익명 사용자의 이미지

iimec2 wrote:
1.int offset =1;
Unsign long result = offset & ~31UL; <- 전 해석이 안되네용..ㅜㅜ

Hint1:UL은 Unsigned Long의 약자. 즉 31이 Unsigned Long형으로 간주하라.
Hint2: ~(not), &(and)는 비트 연산자.

iimec2 wrote:

2. . usb_address0_sem은 멀까?

리눅스에서 함수 인자에 저런 것이 있는데요..디파인도 아니고..ctag로 찾아봐도 안나오네용. ㅜㅜ

usb_address0_sem은 usb_address 0에 대한 세마포어를 나타내는 것 같군요.

iimec2 wrote:

3. static int ascii2utf(char *scii, __u8 *utf, int utfmax)
{
Int retval;
For(retval =0; *ascii && utfmax > 1; utfmax -=2, retval +=2)
{ *utf++ = * ascii ++ & 0x7f;
*utf++=0;
}
Return retval;
}
여기서 ascii포인터는 캐릭터형 배열의 주소값을 받는다. __u8은 unsigned char 형이다.

hint1: IA32나 IA64에서 Char타입은 몇비트?
hint2: __u16은 뭘까요?

iimec2 wrote:

머하는 거여요? 해석이 안되요,...나 프로그래머 맞어?ㅠㅜ

수련이 더 필요하신 것 같군요.

hie의 이미지

Quote:
2. . usb_address0_sem은 멀까?

리눅스에서 함수 인자에 저런 것이 있는데요..디파인도 아니고..ctag로 찾아봐도 안나오네용. ㅜㅜ

구글에서 찾으니 금방 나오는뎅.. ㅡ.ㅡ;;
LXR에서도 함 찾아볼까 하다가....

암튼 세마포네요..
선언 :
static DECLARE_MUTEX(usb_address0_sem);
사용법 :

   int foo(....)
   {
           ...
           down(&usb_address0_sem);

           // 보호해야 할 코드

           up(&usb_address0_sem);
           ...
   }

댓글 달기

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