免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1815 | 回复: 7
打印 上一主题 下一主题

请问在Solaris下创建大数据文件的问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2003-02-15 14:24 |只看该作者 |倒序浏览
#include <stdio.h>;
#include <memory.h>;
以下是我的源程序,创建一个大数据文件
我有一个程序,能在Windows下执行,但是在Solaris 2.8下不能完全执行
创建了一个2147483647大小的数据文件就退出了

extern int errno;
void main()
{
  FILE *fp;
  unsigned int loop;
  int error;
  char buffer[1024];
  memset(buffer,'a',1024);
  if((fp=fopen("test.dat","wb+")==NULL)
     { printf("Create file failed!\n"; return ;  }
  setvbuf(fp,NULL,_IONBF,0);
  for(loop=0;loop<1024*1024*3;loop++)
    { if((error=fwrite(buffer,1024,1,fp))!=1)
       { error=errno;
                printf("Write failed!  errno code=%d\n",errno);
         fclose(fp);
         return;
       }
    }      
  fclose(fp);
  return;
}

请问在unix下fwrite不能写超过2GB的数据吗?
我用java写在同样的unix环境下同样的机器上可以创建3gb的数据呀
是sparc芯片的solaris 2.8  gcc 3.2
结果是errno=27

论坛徽章:
0
2 [报告]
发表于 2003-02-15 17:03 |只看该作者

请问在Solaris下创建大数据文件的问题

这要看文件指针是用什么来保存的

如果是int 的话
那么上限当然是2G
这与编译器相关

论坛徽章:
0
3 [报告]
发表于 2003-02-16 09:57 |只看该作者

请问在Solaris下创建大数据文件的问题

我想继续有一个疑问。假如采用64位的指针,是否会存在这个问题呢?在Solaris的网站上有关于SPARC芯片的文章,指出了采用操作系统环境32位和64位安装的区别
The size of the individual data types is determined by the data type model being used by the operating environment (OE). The 32-bit OE uses the ILP32 data model, which specifies that the size of the int, long, and pointer data types are 32 bits (hence ILP32).

The industry-standard LP64 data type model is used in the 64-bit OE. The LP64 data type model specifies a size of 64 bits for the long and pointer data types and does not modify the size of other data types. The size relationship for various data types under both the 32-bit and 64-bit OE is as follows.

C Data Type ILP32 Data Model

(Size in Bits) LP64 Data Model

(Size in Bits)
char 8 8
short int 16 16
int 32 32
long 32 64
float 32 32
double 64 64
pointer 32 64
enum 32 32
long long 64 64
long double 128 128


我的操作系统用的是安装64位的,并下载gcc源代码进行编译生成的编译器,那么gcc能编译成64位的编译器吗?如果能,能解决这个问题吗?
ALoneyHeart

论坛徽章:
1
荣誉版主
日期:2011-11-23 16:44:17
4 [报告]
发表于 2003-02-16 13:40 |只看该作者

请问在Solaris下创建大数据文件的问题

gcc 3.2已经支持sparc64的编译。  

编译的时候带上-m64

另外你看看有没有文件大小软限制,用ulimit -a看看,缺省好像是2G,改一下,也许就好了

论坛徽章:
1
荣誉版主
日期:2011-11-23 16:44:17
5 [报告]
发表于 2003-02-16 13:43 |只看该作者

请问在Solaris下创建大数据文件的问题

solaris有个64 bit developer guide,你可以看看
http://docs.sun.com/db/doc/805-6250

论坛徽章:
0
6 [报告]
发表于 2003-02-16 19:18 |只看该作者

请问在Solaris下创建大数据文件的问题

谢谢你gadfly,我不明白编译器对指针的处理是如何操作的,是不是说带上-m64编译后,程序中所有的指针都是64位了呢?

论坛徽章:
1
荣誉版主
日期:2011-11-23 16:44:17
7 [报告]
发表于 2003-02-16 21:22 |只看该作者

请问在Solaris下创建大数据文件的问题

可以这样理解吧。生成的二进制代码是64位寻址的。

论坛徽章:
0
8 [报告]
发表于 2003-02-17 18:39 |只看该作者

请问在Solaris下创建大数据文件的问题

谢谢了
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP