From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-la0-x235.google.com (mail-la0-x235.google.com [IPv6:2a00:1450:4010:c03::235]) by dpdk.org (Postfix) with ESMTP id 0FA1D4BBC for ; Wed, 23 Oct 2013 13:40:00 +0200 (CEST) Received: by mail-la0-f53.google.com with SMTP id eo20so541676lab.12 for ; Wed, 23 Oct 2013 04:40:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=hz+xV1eAWXJdAmFDVlw8PVcFzalxUucnK7wCXWXefK0=; b=Jtd0u+inKnTJqJ7XB9nNhdRZSnngHoAIvisBl0Uh9+CKuwfjKcF5/EcM39XBW4uiFm 0qCb9IFq85GxwpY6uDoajxuOph3LTY1UHKjljiXDYlI8+r3ASjrIOVwAalSDEdulkIPT CWxJLKFpT3NyywlmUunvhuzoa5mB6gt8iV/YJwwp41gmka5JHWrr1KQXHKoWRAw+7GoG pUIirm2KQIMO83iAiDMQYW2BUeH9aTuz4yyDqoVCnNqIyT7QlN0UZXUbgDBALdFxlNy/ P1Fd5F2YNUCPxCgMW6aDS8TrxZyEdHJ/yqRwJj3oMbQHYmFo5NcMCu4AjOgVzNaTl6xP WPYw== MIME-Version: 1.0 X-Received: by 10.152.225.161 with SMTP id rl1mr456529lac.38.1382528450000; Wed, 23 Oct 2013 04:40:50 -0700 (PDT) Received: by 10.112.12.231 with HTTP; Wed, 23 Oct 2013 04:40:49 -0700 (PDT) Date: Wed, 23 Oct 2013 17:10:49 +0530 Message-ID: From: Jyotiswarup Raiturkar To: dev@dpdk.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: [dpdk-dev] query about rte_eal_mp_remote_launch() X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Oct 2013 11:40:01 -0000 Hello Devs I'm new to DPDK and trying to understand the basics.. I want to write a DPDK app where I want to configure shm rings on the fly, and I want one thread(per core) to service the ring. In some of the examples I saw rte_eal_mp_remote_launch() being used, but this is a one time launch. Can I use pthread_create() on-the-fly (taking care of CPU core allocation), after doing an initial threads launch using rte_eal_mp_remote_launch()? Thanks Jyotiswarup Raiturkar