Skip to content

Commit

Permalink
iox-eclipse-iceoryx#32: moved platform types
Browse files Browse the repository at this point in the history
  • Loading branch information
Poehnl Michael (CC-AD/ESW1) authored and elBoberido committed Jan 30, 2020
1 parent da51fe9 commit 01b4da2
Show file tree
Hide file tree
Showing 24 changed files with 24 additions and 25 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@

#include "iceoryx_posh/internal/log/posh_logging.hpp"
#include "iceoryx_utils/cxx/smart_c.hpp"
#include "iceoryx_utils/platform/types.hpp"

#include <arpa/inet.h>
#include <stdlib.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <unistd.h>

namespace iox
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
#include "iceoryx_posh/iceoryx_posh_types.hpp"
#include "iceoryx_posh/internal/runtime/message_queue_message.hpp"
#include "iceoryx_utils/internal/units/duration.hpp"
#include "iceoryx_utils/platform/types.hpp"
#include "iceoryx_utils/posix_wrapper/timer.hpp"

#include <cstdint>
Expand All @@ -27,7 +28,6 @@
#include <stdlib.h>
#include <string>
#include <sys/stat.h>
#include <sys/types.h>
#include <time.h>
#include <unistd.h>

Expand Down
2 changes: 1 addition & 1 deletion iceoryx_posh/source/roudi/application/roudi_app.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
#include "stdio.h"
#include <getopt.h>
#include <pthread.h>
#include <semaphore.h> // @todo: use semaphore wrapper
#include "iceoryx_utils/platform/semaphore.hpp" // @todo: use semaphore wrapper
#include <signal.h>
#include <sys/resource.h>

Expand Down
1 change: 0 additions & 1 deletion iceoryx_posh/source/roudi/roudi_lock.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
#include <arpa/inet.h>
#include <stdlib.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <unistd.h>

namespace iox
Expand Down
6 changes: 3 additions & 3 deletions iceoryx_posh/test/moduletests/test_mepoo_segment.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#include "test.hpp"
#include "test_definitions.hpp"
#include "iceoryx_posh/internal/mepoo/memory_manager.hpp"
#include "iceoryx_posh/internal/mepoo/mepoo_segment.hpp"
#include "iceoryx_utils/internal/posix_wrapper/shared_memory_object.hpp"
#include "iceoryx_utils/internal/posix_wrapper/shared_memory_object/allocator.hpp"
#include "iceoryx_utils/platform/types.hpp"
#include "test.hpp"
#include "test_definitions.hpp"

#include <fcntl.h>
#include <functional>
#include <memory>
#include <sys/stat.h>
#include <sys/types.h>

using namespace ::testing;
using namespace iox::mepoo;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

#include <cstring>
#include <fcntl.h>
#include "iceoryx_platform/semaphore.hpp"
#include "iceoryx_utils/platform/semaphore.hpp"
#include <sys/stat.h>

namespace iox
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@

#pragma once

#include <semaphore.h>
#include
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@

#pragma once

#include <semaphore.h>
#include
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@

#pragma once

#include <semaphore.h>
#include
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@

#pragma once

#include <semaphore.h>
#include
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@

#pragma once

#include <semaphore.h>
#include
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@

#pragma once

#include <semaphore.h>
#include
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@

#pragma once

#include <semaphore.h>
#include
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@

#pragma once

#include <semaphore.h>
#include
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@

#pragma once

#include <semaphore.h>
#include
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@

#pragma once

#include <semaphore.h>
#include
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@

#pragma once

#include <semaphore.h>
#include
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@

#pragma once

#include <semaphore.h>
#include
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@

#pragma once

#include <semaphore.h>
#include
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@

#pragma once

#include <semaphore.h>
#include
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@

#pragma once

#include <semaphore.h>
#include <sys/types.h>
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@

#pragma once

#include <semaphore.h>
#include
2 changes: 1 addition & 1 deletion iceoryx_utils/source/posix_wrapper/posix_access_rights.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@

#include "iceoryx_utils/internal/posix_wrapper/posix_access_rights.hpp"
#include "iceoryx_utils/cxx/smart_c.hpp"
#include "iceoryx_utils/platform/types.hpp"

#include <grp.h>
#include <limits>
#include <pwd.h>
#include <sys/types.h>
#include <unistd.h>

namespace iox
Expand Down

0 comments on commit 01b4da2

Please sign in to comment.