~ubuntu-branches/ubuntu/precise/slurm-llnl/precise

« back to all changes in this revision

Viewing changes to src/common/slurm_protocol_pack.h

  • Committer: Bazaar Package Importer
  • Author(s): Gennaro Oliva
  • Date: 2011-04-08 11:21:17 UTC
  • mfrom: (3.3.16 sid)
  • Revision ID: james.westby@ubuntu.com-20110408112117-nfnyq9dtm55hqoaw
Tags: 2.2.4-1
* New upstream releases 
* Cleaning spare file and directories, not belonging to the sources
  generated by the building process and not removed by distclean.
  Added debian/clean with spare files and rm -rf inside debian/rules
  for directories.
* Added new packages libslurm-perl, libslurmdb-perl, slurm-llnl-torque
  (Closes: #575822) thanks to Julien Blache

Show diffs side-by-side

added added

removed removed

Lines of Context:
98
98
 *                      automatically updated
99
99
 * RET 0 or error code
100
100
 */
101
 
extern int unpack_msg ( slurm_msg_t * msgi , Buf buffer );
 
101
extern int unpack_msg ( slurm_msg_t * msg , Buf buffer );
102
102
 
103
103
/***************************************************************************/
104
104
/* specific case statement Pack / Unpack methods for slurm protocol bodies */
140
140
/*              char *partition, char *nodes, char *name, char *network, */
141
141
/*              Buf buffer ); */
142
142
 
143
 
extern void pack_multi_core_data (multi_core_data_t *multi_core, Buf buffer);
144
 
extern int unpack_multi_core_data (multi_core_data_t **multi_core, Buf buffer);
145
 
 
 
143
extern void pack_multi_core_data (multi_core_data_t *multi_core, Buf buffer,
 
144
                                  uint16_t protocol_version);
 
145
extern int unpack_multi_core_data (multi_core_data_t **multi_core, Buf buffer,
 
146
                                   uint16_t protocol_version);
 
147
extern int slurm_unpack_block_info_msg(
 
148
        block_info_msg_t **block_info_msg_pptr, Buf buffer,
 
149
        uint16_t protocol_version);
146
150
#endif