mirror of
https://github.com/vivier/EMILE.git
synced 2024-11-13 15:05:05 +00:00
36 lines
655 B
C
36 lines
655 B
C
static __attribute__((used)) char* rcsid = "$CVSHeader$";
|
|
/*
|
|
*
|
|
* (c) 2004 Laurent Vivier <LaurentVivier@wanadoo.fr>
|
|
*
|
|
*/
|
|
|
|
#include <sys/types.h>
|
|
#include <unistd.h>
|
|
|
|
#include "partition.h"
|
|
#include "libemile.h"
|
|
|
|
int emile_map_write(emile_map_t *map, int part)
|
|
{
|
|
off_t offset;
|
|
int ret;
|
|
|
|
if (part > map->partition.MapBlkCnt)
|
|
return -1;
|
|
|
|
offset = part * sizeof(struct Partition) + sizeof(struct DriverDescriptor);
|
|
|
|
ret = lseek(map->fd, offset, SEEK_SET);
|
|
if (ret != offset)
|
|
return -1;
|
|
|
|
ret = write(map->fd, &map->partition, sizeof(struct Partition));
|
|
if (ret != sizeof(struct Partition))
|
|
return -1;
|
|
|
|
map->current = part;
|
|
|
|
return part;
|
|
}
|