Linux MIPS Architecture development
 help / color / mirror / Atom feed
* (Re-Send) shmctl() returns corrupt value on pb1000.
@ 2002-05-30 11:10 Takeshi Aihana
  2002-05-30 12:19 ` Atsushi Nemoto
  0 siblings, 1 reply; 7+ messages in thread
From: Takeshi Aihana @ 2002-05-30 11:10 UTC (permalink / raw)
  To: linux-mips

# Sorry, please ignore previous mail I send.

Hello all,

I have a problem now about return the segment size of shared memory from
shmctl() func.

First of step was to start apache_1.3.24 on kernel-2.4.17/pb1000.
However it could not be started because it might be currput segment size
from shmctl() called in apache.
So that I tried to test with shmctl() on
(A)kernel-2.4.17/pb1000/gcc-2.95.3 and (B)kernel-2.4.9/x86/gcc-2.95.3 as
the follows. 
(B) was just returned correct segment size, but (A)'s segment size was 0
(of cause memory on pb1000 was left).

This simple code is follows, and `gcc -o test test.c`.
-----------------------------------8<---------------------------------------
#include <stdio.h>
#include <sys/ipc.h>
#include <sys/shm.h>

int main (void) {
  int shm_id;

  struct shmid_ds ds;
  shm_id = shmget(IPC_PRIVATE, 123, IPC_CREAT|0666);

  if (shm_id < 0) {
    perror ("shmget");
    return 1;
  }

  if (shmctl(shm_id, IPC_STAT, &ds)) {
    perror ("shmctl");
    exit (1);
  }
  printf( "shm_segsz = %d\n", ds.shm_segsz);
}

-----------------------------------8<---------------------------------------

Then each results are,
 x86(kernel-2.4.9/RH-7.2/gcc-2.95.3) : shm_segsz = 123
 pb1000(kernel-2.4.17/gcc-2.95.3)    : shm_segsz = 0

This value of pb1000 could not be expected for me.

So if you have any adivices that should be add option to compile on
pb1000, or if you have been faced similar to this, 
please let me knows.

Thank you for your helps.
Regards.

---
(TAKESHI - MontaVista Software Japan)

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2002-06-04  3:14 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-05-30 11:10 (Re-Send) shmctl() returns corrupt value on pb1000 Takeshi Aihana
2002-05-30 12:19 ` Atsushi Nemoto
2002-05-30 13:02   ` Takeshi Aihana
2002-05-31  2:28     ` Atsushi Nemoto
2002-06-03 10:09       ` Takeshi AIHANA
2002-06-03 12:49         ` Atsushi Nemoto
2002-06-04  3:14           ` Takeshi AIHANA

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox