Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1687012
  • 博文数量: 511
  • 博客积分: 967
  • 博客等级: 准尉
  • 技术积分: 2560
  • 用 户 组: 普通用户
  • 注册时间: 2012-07-06 14:19
文章分类

全部博文(511)

文章存档

2016年(11)

2015年(61)

2014年(257)

2013年(63)

2012年(119)

分类: Android平台

2014-03-18 10:20:35

//read emmc panel partions data to buf;
//write buf data to emmc partions

static int realrwdata(rwinfo *info)
{
    int device_fd = -1;
    device_fd = open(info->path, O_RDWR | O_SYNC);
    if (device_fd < 0) {
        return -1;
    }

    lseek(device_fd, info->rw_offset, SEEK_SET);

if(info->rw_type == DATA_W)
    info->data_size = write(device_fd, (char*)info->data_buf, info->rw_size);
else if(info->rw_type == DATA_R)
   info->data_size = read(device_fd, (char*)info->data_buf, info->rw_size);

    fsync(device_fd);
    close(device_fd);
    return info->data_size;
}

阅读(4030) | 评论(0) | 转发(1) |
给主人留下些什么吧!~~