Bring QoS operations naming scheme in line with the rest
The main naming scheme is OPER_TYPE (i.e., dds_create_participant) but the QoS operations were named TYPE_OPER (i.e., dds_qos_create). This commit brings the QoS scheme in line with the rest, retaining the old names as a deprecated interface. Signed-off-by: Erik Boasson <eb@ilities.com>
This commit is contained in:
parent
a519d9f597
commit
651bdfee06
36 changed files with 206 additions and 150 deletions
|
@ -94,7 +94,7 @@ read_instance_init(void)
|
|||
char name[100];
|
||||
dds_qos_t *qos;
|
||||
|
||||
qos = dds_qos_create();
|
||||
qos = dds_create_qos();
|
||||
cr_assert_not_null(qos, "Failed to create prerequisite qos");
|
||||
|
||||
g_participant = dds_create_participant(DDS_DOMAIN_DEFAULT, NULL, NULL);
|
||||
|
@ -256,7 +256,7 @@ read_instance_init(void)
|
|||
g_hdl_valid = dds_instance_lookup(g_reader, &sample);
|
||||
cr_assert_neq(g_hdl_valid, DDS_HANDLE_NIL, "Failed prerequisite dds_instance_lookup");
|
||||
|
||||
dds_qos_delete(qos);
|
||||
dds_delete_qos(qos);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue